예제 #1
0
 public CartController()
 {
     itemColl     = new CartItemCollection();
     drinkColl    = new DrinkCollection();
     specificColl = new CartItemSpecificsCollection();
     DVM          = new List <CartItemViewModel>();
 }
 public AdminController()
 {
     cartColl     = new ShoppingCartCollection();
     itemColl     = new CartItemCollection();
     drinkColl    = new DrinkCollection();
     customerColl = new CustomerCollection();
     specificColl = new CartItemSpecificsCollection();
     CIVM         = new List <CartItemViewModel>();
     drinkVal     = new DrinkValidation();
 }