public QueueService(IQueueRepository queueRepository, IQueueProvider queueProvider, IAgentAuthenticationRepository agentAuthenticationRepository)
 {
     _queueRepository = queueRepository;
     _queueProvider = queueProvider;
     _agentAuthenticationRepository = agentAuthenticationRepository;
 }
 public AgentAuthenticationService(IAgentAuthenticationRepository agentAuthenticationRepository, ISaltedHasher saltedHasher, ILogger logger)
 {
     _agentAuthenticationRepository = agentAuthenticationRepository;
     _saltedHasher = saltedHasher;
     _logger = logger;
 }