Example #1
0
 public CustomerVipController(ICustomerVipService customerVipService,
                              IMapper mapper,
                              ILogger <CustomerVipController> logger) : base(logger)
 {
     _customerVipService = customerVipService;
     _mapper             = mapper;
 }
Example #2
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;
 }
Example #3
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;
 }
Example #4
0
 public CustomerVipController(ICustomerVipService customerVipService,
                              IUserService userService) : base(userService)
 {
     _customerVipService = customerVipService;
 }