Subversion Repositories SmartDukaan

Rev

Rev 33436 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33436 Rev 34884
Line 13... Line 13...
13
	private int itemId;
13
	private int itemId;
14
	private double sellingPrice;
14
	private double sellingPrice;
15
	private PendingOrderItemPolicyPlan pendingOrderItemPolicyPlan;
15
	private PendingOrderItemPolicyPlan pendingOrderItemPolicyPlan;
16
	private int availability;
16
	private int availability;
17
	private int warehouseId;
17
	private int warehouseId;
-
 
18
	private String smartSellerId;
18
 
19
 
19
	public CartItem(int quantity, int itemId) {
20
	public CartItem(int quantity, int itemId) {
20
		super();
21
		super();
21
		this.quantity = quantity;
22
		this.quantity = quantity;
22
		this.itemId = itemId;
23
		this.itemId = itemId;
Line 96... Line 97...
96
	}
97
	}
97
 
98
 
98
	public void setPendingOrderItemPolicyPlan(PendingOrderItemPolicyPlan pendingOrderItemPolicyPlan) {
99
	public void setPendingOrderItemPolicyPlan(PendingOrderItemPolicyPlan pendingOrderItemPolicyPlan) {
99
		this.pendingOrderItemPolicyPlan = pendingOrderItemPolicyPlan;
100
		this.pendingOrderItemPolicyPlan = pendingOrderItemPolicyPlan;
100
	}
101
	}
-
 
102
 
-
 
103
	public String getSmartSellerId() {
-
 
104
		return smartSellerId;
-
 
105
	}
-
 
106
 
-
 
107
	public void setSmartSellerId(String smartSellerId) {
-
 
108
		this.smartSellerId = smartSellerId;
-
 
109
	}
101
}
110
}
102
111