Пример #1
0
 public CustomerTypesController(ICustomerTypeService customerTypeService, IMapper mapper)
 {
     _customerTypeService = customerTypeService
                            ?? throw new ArgumentNullException(nameof(customerTypeService));
     _mapper = mapper
               ?? throw new ArgumentNullException(nameof(mapper));
 }
Пример #2
0
 public CustomerTypeController(ICustomerTypeService iCustomerTypeService, IUserInfo iUserInfo,
                               IUnitOfWork unitOfWork)
 {
     _iCustomerTypeService = iCustomerTypeService;
     _iUserInfo            = iUserInfo;
     _unitOfWork           = unitOfWork;
 }
Пример #3
0
 public TicketReportController(
     ITicketService TicketService,
     IAppUserService AppUserService,
     IOrganizationService OrganizationService,
     ITicketTypeService TicketTypeService,
     ITicketGroupService TicketGroupService,
     ITicketStatusService TicketStatusService,
     ISLAStatusService SLAStatusService,
     ITicketPriorityService TicketPriorityService,
     ICustomerService CustomerService,
     ICustomerTypeService CustomerTypeService,
     ICurrentContext CurrentContext,
     IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.TicketService         = TicketService;
     this.AppUserService        = AppUserService;
     this.OrganizationService   = OrganizationService;
     this.TicketTypeService     = TicketTypeService;
     this.TicketGroupService    = TicketGroupService;
     this.TicketStatusService   = TicketStatusService;
     this.SLAStatusService      = SLAStatusService;
     this.TicketPriorityService = TicketPriorityService;
     this.CustomerService       = CustomerService;
     this.CustomerTypeService   = CustomerTypeService;
     this.CurrentContext        = CurrentContext;
 }
Пример #4
0
 public CustomerTypeController(ICustomerTypeService iCustomerTypeService, IUserInfo iUserInfo,
     IUnitOfWork unitOfWork)
 {
     _iCustomerTypeService = iCustomerTypeService;
     _iUserInfo = iUserInfo;
     _unitOfWork = unitOfWork;
 }
Пример #5
0
 public CustomerCountController(IBusinessStateService iBusinessStateService,
                                IBusinessChanceService iBusinessChanceService, ICustomerTypeService iCustomerTypeService,
                                ICustomerLevelService iCustomerLevelService)
 {
     _iBusinessStateService  = iBusinessStateService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerTypeService   = iCustomerTypeService;
     _iCustomerLevelService  = iCustomerLevelService;
 }
Пример #6
0
 public CustomerCountController(IBusinessStateService iBusinessStateService,
     IBusinessChanceService iBusinessChanceService, ICustomerTypeService iCustomerTypeService,
     ICustomerLevelService iCustomerLevelService)
 {
     _iBusinessStateService = iBusinessStateService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerTypeService = iCustomerTypeService;
     _iCustomerLevelService = iCustomerLevelService;
 }
Пример #7
0
 public CustomerReportController(
     ICustomerTypeService CustomerTypeService,
     ICurrentContext CurrentContext,
     DataContext DataContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.CustomerTypeService = CustomerTypeService;
     this.CurrentContext      = CurrentContext;
     this.DataContext         = DataContext;
 }
Пример #8
0
 public CustomerGroupingController(
     ICustomerTypeService CustomerTypeService,
     IStatusService StatusService,
     ICustomerGroupingService CustomerGroupingService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.CustomerTypeService     = CustomerTypeService;
     this.StatusService           = StatusService;
     this.CustomerGroupingService = CustomerGroupingService;
     this.CurrentContext          = CurrentContext;
 }
 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;
 }
Пример #10
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;
 }
Пример #11
0
 public CustomerController(ICustomerService customerService,
                           ICommonService commonService,
                           IUsCustomerOfficeListService usCustomerOfficeListService,
                           ICountryService countryService,
                           ICustomerTypeService customerTypeService,
                           IStateRepository stateRepository,
                           IConfiguration configuration)
 {
     _customerService             = customerService;
     _commonService               = commonService;
     _configuration               = configuration;
     _usCustomerOfficeListService = usCustomerOfficeListService;
     _countryService              = countryService;
     _stateRepository             = stateRepository;
     _customerTypeService         = customerTypeService;
     _logger = LogManager.GetCurrentClassLogger();
 }
Пример #12
0
 public CustomerImportService(ICustomerService CustomerService,
                              IUserService userService,
                              IImportFileService importFileService,
                              IExportCSVService exportCsvService,
                              IUsCustomerOfficeListService usCustomerOfficeListService,
                              IStateService stateService,
                              ICountryService countryService,
                              ICustomerTypeService customerTypeService)
 {
     _importFileService           = importFileService;
     _customerService             = CustomerService;
     _userService                 = userService;
     _stateService                = stateService;
     _usCustomerOfficeListService = usCustomerOfficeListService;
     _countryService              = countryService;
     _exportCsvService            = exportCsvService;
     _customerTypeService         = customerTypeService;
 }
Пример #13
0
 public LookupOrchestra(ICountryService countryService, ICurrencyService currencyService, ICustomerTypeService customerTypeService, IDespatchService despatchService,
                        IPorterageService porterageService, IPortService portService, IPackWtUnitService packWtUnitService, IPurchaseChargeTypeService purchaseChargeTypeService,
                        IPurchaseTypeService purchaseTypeService, ITransactionTaxLocationService transactionTaxLocationService, IvwPermissionDetailService permissionDetailService,
                        ICompanyService companyService, IDivisionService divisionService, IDepartmentService departmentService, ISetupGlobalService setupGlobalService, ISetupLocalService setupLocalService)
 {
     _countryService                = countryService;
     _currencyService               = currencyService;
     _customerTypeService           = customerTypeService;
     _despatchService               = despatchService;
     _packWtUnitService             = packWtUnitService;
     _portService                   = portService;
     _porterageService              = porterageService;
     _purchaseChargeTypeService     = purchaseChargeTypeService;
     _purchaseTypeService           = purchaseTypeService;
     _setupGlobalService            = setupGlobalService;
     _setupLocalService             = setupLocalService;
     _transactionTaxLocationService = transactionTaxLocationService;
     _permissionDetailService       = permissionDetailService;
     _companyService                = companyService;
     _divisionService               = divisionService;
     _departmentService             = departmentService;
 }
Пример #14
0
 public TicketController(
     ICustomerService CustomerService,
     IOrganizationService OrganizationService,
     IProductService ProductService,
     ICallLogService CallLogService,
     IStatusService StatusService,
     ITicketIssueLevelService TicketIssueLevelService,
     ITicketPriorityService TicketPriorityService,
     ITicketSourceService TicketSourceService,
     ITicketStatusService TicketStatusService,
     ITicketGroupService TicketGroupService,
     ITicketTypeService TicketTypeService,
     ITicketResolveTypeService TicketResolveTypeService,
     IAppUserService AppUserService,
     ITicketService TicketService,
     ICustomerTypeService CustomerTypeService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.CustomerService          = CustomerService;
     this.OrganizationService      = OrganizationService;
     this.ProductService           = ProductService;
     this.CallLogService           = CallLogService;
     this.StatusService            = StatusService;
     this.TicketIssueLevelService  = TicketIssueLevelService;
     this.TicketPriorityService    = TicketPriorityService;
     this.TicketSourceService      = TicketSourceService;
     this.TicketStatusService      = TicketStatusService;
     this.TicketGroupService       = TicketGroupService;
     this.TicketTypeService        = TicketTypeService;
     this.TicketResolveTypeService = TicketResolveTypeService;
     this.AppUserService           = AppUserService;
     this.TicketService            = TicketService;
     this.CustomerTypeService      = CustomerTypeService;
     this.CurrentContext           = CurrentContext;
 }
 public CustomerTypeController(ICustomerTypeService CustomerTypeService)
 {
     _CustomerTypeService = CustomerTypeService;
 }
Пример #16
0
 public CustomerTypeController(IErrorService errorService, ICustomerTypeService customerTypeService)
     : base(errorService)
 {
     this._customerTypeService = customerTypeService;
 }
Пример #17
0
 public CustomerTypeController(ICustomerTypeService customerTypeService, CustomerTypeViewModel customerTypeViewModel)
     : base(customerTypeService, customerTypeViewModel)
 {
 }
Пример #18
0
 public CustomerTypeController(ILogger <CustomerTypeController> logger, ICustomerTypeService currentService)
 {
     _logger  = logger;
     _service = currentService;
 }
 public CustomerTypesController(ICustomerTypeService customerTypesService)
 {
     _customerTypesService = customerTypesService;
 }
Пример #20
0
 public CustomerTypeController(ICustomerTypeService customerTypeService)
 {
     _customerTypeService = customerTypeService;
 }
Пример #21
0
 public CustomerTypeOrchestra(ICustomerTypeService customerTypeService)
 {
     _customerTypeService = customerTypeService;
 }