presence/presence_api/ServiceExtensions/ServiceExtensions.cs

23 lines
685 B
C#
Raw Normal View History

2024-11-08 06:16:20 +00:00
// using Demo.Data.Repository;
// using Demo.Domain.UseCase;
// public static class ServiceExtencions{
// public static void ConfigurateGroup(this IServiceCollection services)
// {
// services.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
// .AddScoped<GroupUseCase>();
// }
// }
using Demo.Data.Repository;
using Demo.Domain.UseCase;
public static class ServiceExtencions
{
public static void ConfigurateGroup(this IServiceCollection services)
{
services.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
.AddScoped<IUserRepository, SQLUserRepositoryImpl>()
.AddScoped<GroupUseCase>();
}
}