コード例 #1
0
 public RealTimeAdherenceModel(IAgentStatusRepository agentStatusRepository, ISeatRepository seatRepository,
                               IEmployeeRepository employeeRepository, IAdherenceEventRepository adherenceEventRepository)
 {
     _agentStatusRepository    = agentStatusRepository;
     _adherenceEventRepository = adherenceEventRepository;
     _seatRepository           = seatRepository;
     _employeeRepository       = employeeRepository;
     _agentAcdidsCache         = new Dictionary <Guid, IEnumerable <string> >(500);
 }
コード例 #2
0
 public RealTimeAdherenceModel(IAgentStatusRepository agentStatusRepository, ISeatRepository seatRepository,
     IEmployeeRepository employeeRepository, IAdherenceEventRepository adherenceEventRepository)
 {
     _agentStatusRepository = agentStatusRepository;
     _adherenceEventRepository = adherenceEventRepository;
     _seatRepository = seatRepository;
     _employeeRepository = employeeRepository;
     _agentAcdidsCache = new Dictionary<Guid, IEnumerable<string>>(500);
 }