コード例 #1
0
ファイル: CallLogController.cs プロジェクト: hienmx95/crm-be
 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
ファイル: TicketController.cs プロジェクト: hienmx95/crm-be
 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
ファイル: CallsController.cs プロジェクト: jsrezam/kaizen
 public CallsController(IMapper mapper, ICallLogService callLogService, IUserService userService)
 {
     this.userService    = userService;
     this.callLogService = callLogService;
     this.mapper         = mapper;
 }
コード例 #4
0
ファイル: CallLogController.cs プロジェクト: zafariNet/Saman
 public CallLogController(IEmployeeService employeeService, ICallLogService callLogService) : base(employeeService)
 {
     _employeeService = employeeService;
     _callLogService  = callLogService;
 }