diff --git a/src/Mockaco.AspNetCore/DependencyInjection/MockacoServiceCollection.cs b/src/Mockaco.AspNetCore/DependencyInjection/MockacoServiceCollection.cs index c275fcc..51cf15d 100644 --- a/src/Mockaco.AspNetCore/DependencyInjection/MockacoServiceCollection.cs +++ b/src/Mockaco.AspNetCore/DependencyInjection/MockacoServiceCollection.cs @@ -85,13 +85,13 @@ private static IServiceCollection AddInternalServices(this IServiceCollection se .AddTransient() .AddTemplatesGenerating(); - + private static IServiceCollection AddChaosServices(this IServiceCollection services) => services - .AddSingleton() - .AddSingleton() - .AddSingleton() - .AddSingleton() - .AddSingleton(); + .AddTransient() + .AddTransient() + .AddTransient() + .AddTransient() + .AddTransient(); } }