Ejemplo n.º 1
0
 public CrmController(ICrmService crmService,
                      ICrmTypeService crmTypeService,
                      ICrmStatusService crmStatusService,
                      ICrmPriorityService crmPriorityService,
                      ICustomerSourceService customerSourceService,
                      IProductGroupService productGroupService,
                      ICustomerGroupService customerGroupService,
                      ICustomerVipService customerVipService,
                      IProvinceService provinceService,
                      IUserService userService,
                      IMapper mapper,
                      ILogger <CrmController> logger) : base(logger)
 {
     _crmService            = crmService;
     _crmTypeService        = crmTypeService;
     _crmStatusService      = crmStatusService;
     _crmPriorityService    = crmPriorityService;
     _customerSourceService = customerSourceService;
     _productGroupService   = productGroupService;
     _customerGroupService  = customerGroupService;
     _customerVipService    = customerVipService;
     _provinceService       = provinceService;
     _userService           = userService;
     _mapper = mapper;
 }
 public CustomerGroupController(ICustomerGroupService customerGroupService,
                                IMapper mapper,
                                ILogger <CustomerGroupController> logger) : base(logger)
 {
     _customerGroupService = customerGroupService;
     _mapper = mapper;
 }
Ejemplo n.º 3
0
 public CustomerGroupAppService(ICustomerGroupService CustomerGroupService, IMediatorHandler bus
                                , ICustomerService CustomerService, IAddressService AddressService
                                , INotificationHandler <DomainNotification> notifications)
 {
     _service         = CustomerGroupService;
     _customerService = CustomerService;
     _addressService  = AddressService;
     Bus            = bus;
     _notifications = (DomainNotificationHandler)notifications;
 }
Ejemplo n.º 4
0
 public CustomerController(ICustomerService customerService,
                           ICustomerGroupService customerGroupService,
                           ICustomerVipService customerVipService,
                           IProvinceService provinceService,
                           IMapper mapper,
                           ILogger <CustomerController> logger) : base(logger)
 {
     _customerService      = customerService;
     _customerVipService   = customerVipService;
     _customerGroupService = customerGroupService;
     _provinceService      = provinceService;
     _mapper = mapper;
 }
Ejemplo n.º 5
0
 public CustomerController(ICustomerService customerService, ICustomerGroupService customerGroupService)
 {
     this.customerService      = customerService;
     this.customerGroupService = customerGroupService;
 }
Ejemplo n.º 6
0
 public CustomerGroupController(ICustomerGroupService customerGroupService) : base(customerGroupService)
 {
     _customerGroupService = customerGroupService;
 }
Ejemplo n.º 7
0
 public CustomerGroupApi(ICustomerGroupService customerGroupService)
 {
     _customerGroupService = customerGroupService;
 }
 public CustomerGroupsController(ICustomerGroupService service) : base(service)
 {
     _service = service;
 }
Ejemplo n.º 9
0
 public CustomerGroupController(ICustomerGroupService CustomerGroupService)
 {
     this.CustomerGroupService = CustomerGroupService;
 }
Ejemplo n.º 10
0
 public CustomerGroupApiController()
 {
     _CustomerGroupService = new CustomerGroupService();
 }
Ejemplo n.º 11
0
 public CustomerGroupController(ICustomerGroupService customerGroupService, ICustomerGroupRepository customerGroupRepository) : base(customerGroupService, customerGroupRepository)
 {
     _customerGroupService    = customerGroupService;
     _customerGroupRepository = customerGroupRepository;
 }
 public CustomerGroupController(ICustomerGroupService customerGroupService,
                                IUserService userService) : base(userService)
 {
     _customerGroupService = customerGroupService;
 }
Ejemplo n.º 13
0
 public ManagerCustomerGroupController(ICustomerGroupService customer_groupservice, IMapper mapper)
 {
     this._customer_groupservice = customer_groupservice;
     this._mapper = mapper;
 }
Ejemplo n.º 14
0
 public CustomerGroupController(ICustomerGroupService customerGroup)
 {
     _customerGroup = customerGroup;
 }