internal IRabbitMQService GetService(string connectionString, string hostName, string queueName, string userName, string password, int port)
 {
     return(_rabbitMQServiceFactory.CreateService(connectionString, hostName, queueName, userName, password, port));
 }
 internal IRabbitMQService GetService(string connectionString, string hostName, string exchangeName, string routingKey, string userName, string password, int port)
 {
     return(_rabbitMQServiceFactory.CreateService(connectionString, hostName, exchangeName, routingKey, userName, password, port));
 }
 internal IRabbitMQService GetService(string hostname, string queuename)
 {
     return(_rabbitMQServiceFactory.CreateService(hostname, queuename));
 }