Example #1
0
 public CustomerLevelController(IEmployeeService employeeService,
                                ICustomerLevelService customerLevelService)
     : base(employeeService)
 {
     this._customerLevelService = customerLevelService;
     this._employeeService      = employeeService;
 }
 public CustomerLevelController(ICustomerLevelService iCustomerLevelService, IUserInfo iUserInfo,
                                IUnitOfWork unitOfWork)
 {
     _iCustomerLevelService = iCustomerLevelService;
     _iUserInfo             = iUserInfo;
     _unitOfWork            = unitOfWork;
 }
 public CustomerCountController(IBusinessStateService iBusinessStateService,
     IBusinessChanceService iBusinessChanceService, ICustomerTypeService iCustomerTypeService,
     ICustomerLevelService iCustomerLevelService)
 {
     _iBusinessStateService = iBusinessStateService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerTypeService = iCustomerTypeService;
     _iCustomerLevelService = iCustomerLevelService;
 }
Example #4
0
 public CustomerCountController(IBusinessStateService iBusinessStateService,
                                IBusinessChanceService iBusinessChanceService, ICustomerTypeService iCustomerTypeService,
                                ICustomerLevelService iCustomerLevelService)
 {
     _iBusinessStateService  = iBusinessStateService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerTypeService   = iCustomerTypeService;
     _iCustomerLevelService  = iCustomerLevelService;
 }
Example #5
0
 public CustomerLevelController(
     IStatusService StatusService,
     ICustomerLevelService CustomerLevelService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.StatusService        = StatusService;
     this.CustomerLevelService = CustomerLevelService;
     this.CurrentContext       = CurrentContext;
 }
Example #6
0
 public CustomerController(ICustomerService iCustomerService, IUserInfo iUserInfo, IUnitOfWork unitOfWork,
     ICustomerLevelService iCustomerLevelService, ICustomerTypeService iCustomerTypeService,
     ITagService iTagService, IBusinessStateService iBusinessStateService,
     ISysDepartmentService iSysDepartmentService, IBusinessChanceService iBusinessChanceService,
     ICustomerBusinessChanceService iCustomerBusinessChanceService)
 {
     _iCustomerService = iCustomerService;
     _iUserInfo = iUserInfo;
     _unitOfWork = unitOfWork;
     _iCustomerLevelService = iCustomerLevelService;
     _iCustomerTypeService = iCustomerTypeService;
     _iTagService = iTagService;
     _iBusinessStateService = iBusinessStateService;
     _iSysDepartmentService = iSysDepartmentService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerBusinessChanceService = iCustomerBusinessChanceService;
 }
 public CustomerController(ICustomerService iCustomerService, IUserInfo iUserInfo, IUnitOfWork unitOfWork,
                           ICustomerLevelService iCustomerLevelService, ICustomerTypeService iCustomerTypeService,
                           ITagService iTagService, IBusinessStateService iBusinessStateService,
                           ISysDepartmentService iSysDepartmentService, IBusinessChanceService iBusinessChanceService,
                           ICustomerBusinessChanceService iCustomerBusinessChanceService)
 {
     _iCustomerService               = iCustomerService;
     _iUserInfo                      = iUserInfo;
     _unitOfWork                     = unitOfWork;
     _iCustomerLevelService          = iCustomerLevelService;
     _iCustomerTypeService           = iCustomerTypeService;
     _iTagService                    = iTagService;
     _iBusinessStateService          = iBusinessStateService;
     _iSysDepartmentService          = iSysDepartmentService;
     _iBusinessChanceService         = iBusinessChanceService;
     _iCustomerBusinessChanceService = iCustomerBusinessChanceService;
 }
 public CustomerController(ICustomerService customerService, ICustomerLevelService levelService)
 {
     this._customerService = customerService;
     this._levelService    = levelService;
 }
Example #9
0
 public CustomerLevelController(ICustomerLevelService levelService)
 {
     this._levelService = levelService;
 }
 public CustomerLevelController(ICustomerLevelService customerLevelService, IConfiguration configuration)
 {
     _customerLevelService = customerLevelService;
     _configuration        = configuration;
 }