コード例 #1
0
 public CallCenterRepService(IAddressService addressService, ICallCenterRepRepository callcenterRepository, IUserRepository <CallCenterRep> userRepository, IOrganizationRoleUserRepository organizationRoleUserRepository)
 {
     _addressService        = addressService;
     _callcenterRepository  = callcenterRepository;
     _userRepository        = userRepository;
     _orgRoleUserRepository = organizationRoleUserRepository;
 }
コード例 #2
0
 public CallCenterRepMetricService(long callCenterCallCenterUserId, DateTime startDate, DateTime endDate)
 {
     _callCenterRepMetricDetailRepository = new CallCenterRepMetricDetailRepository(callCenterCallCenterUserId,
                                                                                    startDate,
                                                                                    endDate);
     _callCenterRepMetricDetailFactory = new CallCenterRepMetricDetailViewDataFactory();
     _callCenterRepSpouseMetricDetailViewDataFactory = new CallCenterRepSpouseMetricDetailViewDataFactory();
     _eventCustomerAggregateRepository = new EventCustomerRegistrationViewDataRepository();
     _callCenterRepRepository          = new CallCenterRepRepository();
     _orderRepository         = new OrderRepository();
     _eventCustomerRepository = new EventCustomerRepository();
     _callCenterRepSpouseStatisticsViewDataFactory = new CallCenterRepSpouseStatisticsViewDataFactory();
 }
コード例 #3
0
 public CallCenterRepMetricController(ICallCenterRepRepository callCenterRepRepository, ICallCenterRepMetricFactory callCenterRepMetricFactory)
 {
     _callCenterRepRepository    = callCenterRepRepository;
     _callCenterRepMetricFactory = callCenterRepMetricFactory;
 }