using Demo.Data.Repository; using Demo.Domain.UseCase; public static class ServiceExtencions { // public static void ConfigurateGroup(this IServiceCollection services) // { // services.AddScoped() // .AddScoped() // .AddScoped() // .AddScoped() // .AddScoped() // .AddScoped(); // } public static void AddGroupServices(this IServiceCollection services) { services.AddScoped() .AddScoped(); } public static void AddUserServices(this IServiceCollection services) { services.AddScoped() .AddScoped(); } public static void AddPresenceServices(this IServiceCollection services) { services.AddScoped() .AddScoped(); } }