Ejemplo n.º 1
0
 public Cart_Details(Cart_DTO obj)
 {
     Cart     = obj;
     User     = new User();
     Billing  = new Address();
     Shipping = new Address();
 }
Ejemplo n.º 2
0
 public Cart_Details()
 {
     User     = new User();
     Cart     = new Cart_DTO();
     Billing  = new Address();
     Shipping = new Address();
 }