Example #1
0
 public ShoppingController()
 {
     _orderConcrete       = new OrderConcrete();
     _coffeeConcrete      = new CoffeeConcrete();
     _orderDetailConcrete = new OrderDetailConcrete();
     _wishListConcrete    = new WishListConcrete();
     _customerConcrete    = new CustomerConcrete();
 }
Example #2
0
 public AccountController()
 {
     _orderConcrete          = new OrderConcrete();
     _customerConcrete       = new CustomerConcrete();
     _orderDetailConcrete    = new OrderDetailConcrete();
     _baristaConcrete        = new BaristaConcrete();
     _coffeeConcrete         = new CoffeeConcrete();
     _coffeeCommentConcrete  = new CoffeeCommentConcrete();
     _baristaCommentConcrete = new BaristaCommentConrete();
 }
 public CoffeeCommentController()
 {
     _coffeeCommentConcrete = new CoffeeCommentConcrete();
     _coffeeConcrete        = new CoffeeConcrete();
     _customerConcrete      = new CustomerConcrete();
 }
Example #4
0
 public CoffeeController()
 {
     _coffeeConcrete   = new CoffeeConcrete();
     _categoryConcrete = new CategoryConcrete();
 }
Example #5
0
 public CoffeeController()
 {
     _baristaConcrete       = new BaristaConcrete();
     _coffeeConcrete        = new CoffeeConcrete();
     _coffeeCommentConcrete = new CoffeeCommentConcrete();
 }