Subversion Repositories SmartDukaan

Rev

Rev 21734 | Rev 26607 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.req;

public class CartItems
{       
    public CartItems(long quantity, int itemId) {
                super();
                this.quantity = quantity;
                this.itemId = itemId;
        }

    public CartItems() {
        super();
    }

        private long quantity;
        private int itemId;

    public long getQuantity() {
                return quantity;
        }

        public void setQuantity(long quantity) {
                this.quantity = quantity;
        }

        public int getItemId() {
                return itemId;
        }

        public void setItemId(int itemId) {
                this.itemId = itemId;
        }
        
        @Override
        public String toString() {
                return "CartItems [quantity=" + quantity + ", itemId=" + itemId + "]";
        }

}