public CustomerController(ICustomerService iCustomerService, IApplyActiviteService ApplyActivite, IShopProjectService IShopProjectService, ICustomerLogService iCustomerLogService, IOpenShopService OpenShopService, IShopBrandService IShopBrandService, IShopAttributesService IShopAttributesServiceService, IMessageService messageService, IOrderService orderService, IMissionService missionService)
 {
     _IShopProjectService           = IShopProjectService;
     _iCustomerService              = iCustomerService;
     _ApplyActivite                 = ApplyActivite;
     _iCustomerLogService           = iCustomerLogService;
     _iOpenShopService              = OpenShopService;
     _IShopBrandService             = IShopBrandService;
     _iShopAttributesServiceService = IShopAttributesServiceService;
     _messageService                = messageService;
     _orderService   = orderService;
     _missionService = missionService;
 }
Beispiel #2
0
 public BrandController(IShopBrandService shopBrandService, IShopAttributesService ShopAttributesServiceService, ICustomerService iCustomerService)
 {
     _shopBrandService = shopBrandService;
     _iShopAttributesServiceService = ShopAttributesServiceService;
     _iCustomerService = iCustomerService;
 }
 public ShopBrandController(IShopBrandService iShopBrandService, IShopAttributesService iShopAttributesServiceService)
 {
     _iShopBrandService             = iShopBrandService;
     _iShopAttributesServiceService = iShopAttributesServiceService;
 }