Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21378 kshitij.so 1
package com.spice.profitmandi.web.req;
2
 
3
public class CartItems
4
{	
25953 amit.gupta 5
    public CartItems(long quantity, int itemId) {
6
		super();
7
		this.quantity = quantity;
8
		this.itemId = itemId;
9
	}
10
 
11
    public CartItems() {
12
    	super();
13
    }
14
 
15
	private long quantity;
21378 kshitij.so 16
	private int itemId;
17
 
18
    public long getQuantity() {
19
		return quantity;
20
	}
21
 
22
	public void setQuantity(long quantity) {
23
		this.quantity = quantity;
24
	}
25
 
26
	public int getItemId() {
27
		return itemId;
28
	}
29
 
30
	public void setItemId(int itemId) {
31
		this.itemId = itemId;
32
	}
33
 
34
	@Override
35
	public String toString() {
36
		return "CartItems [quantity=" + quantity + ", itemId=" + itemId + "]";
37
	}
38
 
39
}