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