Input.java [src/java/m/wqm/pestpractscores] Revision: 1369fed1878b9bd77ab7fc48e266f64f403c6ded  Date: Fri May 15 15:25:47 MDT 2015
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.wqm.pestpractscores;

/**
 *
 * @author dhawal
 */
public class Input {
    int AoAId;
    int plan_ipm_practice;
    String plan_pract_variant;
    
    public Input(int AoAId,int plan_ipm_practice,String plan_pract_variant)
    {
        this.AoAId=AoAId;
        this.plan_ipm_practice=plan_ipm_practice; 
        this.plan_pract_variant=plan_pract_variant;
    } 
}