Esempio n. 1
0
 public DataLayerTransaction()
 {
     Profile = new Profile()
     {
         ProfileInfo = new ProfileInfo()
     };
     Total = new CartPrice();
     Items = new List <CartItem>();
 }
Esempio n. 2
0
 public DataLayerCart() : base()
 {
     Price = new CartPrice();
     Items = new List <CartItem>();
 }