public static IServiceCollection AddRabbitMQClient(this IServiceCollection services, RabbitMQOptions options) { RabbitMQClient.Init(options); services.AddScoped <IRabbitMQClient, RabbitMQClient>(); return(services); }