using Microsoft.Extensions.DependencyInjection; namespace zero.Stores; internal static class ServiceCollectionExtensions { public static IServiceCollection AddZeroStores(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddSingleton(); return services; } }