Пример #1
0
 public CallLogController(
     ICallCategoryService CallCategoryService,
     ICallStatusService CallStatusService,
     ICallTypeService CallTypeService,
     ICustomerService CustomerService,
     ICallEmotionService CallEmotionService,
     ICallLogService CallLogService,
     IEntityReferenceService EntityReferenceService,
     IAppUserService AppUserService,
     ICustomerLeadService CustomerLeadService,
     IContactService ContactService,
     ICompanyService CompanyService,
     IOrganizationService OrganizationService,
     IOpportunityService OpportunityService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.CallCategoryService    = CallCategoryService;
     this.CallStatusService      = CallStatusService;
     this.CallTypeService        = CallTypeService;
     this.CustomerService        = CustomerService;
     this.CallEmotionService     = CallEmotionService;
     this.CallLogService         = CallLogService;
     this.EntityReferenceService = EntityReferenceService;
     this.AppUserService         = AppUserService;
     this.CustomerLeadService    = CustomerLeadService;
     this.ContactService         = ContactService;
     this.CompanyService         = CompanyService;
     this.OrganizationService    = OrganizationService;
     this.OpportunityService     = OpportunityService;
     this.CurrentContext         = CurrentContext;
 }
Пример #2
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;
 }
Пример #3
0
 public CallsController(IMapper mapper, ICallLogService callLogService, IUserService userService)
 {
     this.userService    = userService;
     this.callLogService = callLogService;
     this.mapper         = mapper;
 }
Пример #4
0
 public CallLogController(IEmployeeService employeeService, ICallLogService callLogService) : base(employeeService)
 {
     _employeeService = employeeService;
     _callLogService  = callLogService;
 }