public HomeController(ISupplierBusiness supplier, IProductBusiness product, IOrdersBusiness order, IUserBusiness user, IPurchaseBusiness purchase)
 {
     this._supplier = supplier;
     this._product  = product;
     this._order    = order;
     this._user     = user;
     this._purchase = purchase;
 }
Пример #2
0
 public PaymentService(IPaymentBusiness paymentBusiness,
                       IOrdersBusiness ordersBusiness,
                       IShopCartBusiness shopCartBusiness,
                       IBilletIntegration billetIntegration,
                       ICredCardIntegration credCardIntegration)
 {
     _paymentBusiness     = paymentBusiness;
     _ordersBusiness      = ordersBusiness;
     _shopCartBusiness    = shopCartBusiness;
     _billetIntegration   = billetIntegration;
     _credCardIntegration = credCardIntegration;
 }
Пример #3
0
 public OrdersController(IOrdersBusiness order)
 {
     this._order = order;
 }
Пример #4
0
 public OrdersService(IOrdersBusiness orderskBusiness)
 {
     _ordersBusiness = orderskBusiness;
 }
Пример #5
0
 public OrderController(IOrdersBusiness orders)
 {
     this._order = orders;
 }