Result.java [src/java/m/wqm/soilpestlosspot] Revision: adff553c90716fb46ed91582190fd19597594e86  Date: Mon Jun 01 11:21:47 MDT 2015
package m.wqm.soilpestlosspot;

/**
 *
 * @author RUMPAL SIDHU
 */

public class Result {

    int AoAId;
    int operation_id;
    String op_pesticide_id;
    String op_pest_ilp;
    String op_pest_isrp;
    String op_pest_iarp;

    public Result(int AoAId, int operation_id, String op_pesticide_id, String op_pest_ilp, String op_pest_isrp, String op_pest_iarp) {
        this.AoAId = AoAId;
        this.operation_id = operation_id;
        this.op_pesticide_id = op_pesticide_id;
        this.op_pest_ilp = op_pest_ilp;
        this.op_pest_isrp = op_pest_isrp;
        this.op_pest_iarp = op_pest_iarp;
    }
}