public OrderController(IAllOrders orderRep,
                        ShopCartRepository shopCartRep,
                        ServiceCart servicesCart,
                        ServiceUser servicesUser,
                        IAllUser userRep)
 {
     this.orderRep     = orderRep;
     this.shopCartRep  = shopCartRep;
     this.servicesCart = servicesCart;
     this.servicesUser = servicesUser;
     this.userRep      = userRep;
 }
Example #2
0
 public ShopCartController(ShopCartRepository shopCartRep, ServiceCart servicesCart)
 {
     this.shopCartRep  = shopCartRep;
     this.servicesCart = servicesCart;
 }