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
 
23959 amit.gupta 3
import com.spice.profitmandi.web.res.CartItems;;
4
 
21378 kshitij.so 5
public class AddCartRequest
6
{
7
    private CartItems[] cartItems;
8
 
9
    public CartItems[] getCartItems ()
10
    {
11
        return cartItems;
12
    }
13
 
14
    public void setCartItems (CartItems[] cartItems)
15
    {
16
        this.cartItems = cartItems;
17
    }
18
 
19
    @Override
20
    public String toString()
21
    {
22
        return "AddCartRequest [cartItems = "+cartItems+"]";
23
    }
24
}