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;
 }
 public CustomerCountController(IBusinessStateService iBusinessStateService,
     IBusinessChanceService iBusinessChanceService, ICustomerTypeService iCustomerTypeService,
     ICustomerLevelService iCustomerLevelService)
 {
     _iBusinessStateService = iBusinessStateService;
     _iBusinessChanceService = iBusinessChanceService;
     _iCustomerTypeService = iCustomerTypeService;
     _iCustomerLevelService = iCustomerLevelService;
 }
 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;
 }
 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;
 }
 public CustomerTypeController(ICustomerTypeService customerTypeService)
 {
     _customerTypeService = customerTypeService;
 }
示例#21
0
 public CustomerTypeOrchestra(ICustomerTypeService customerTypeService)
 {
     _customerTypeService = customerTypeService;
 }