using Demo.Data.Repository; using Demo.Domain.UseCase; public static class ServiceExtencions { 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(); } }