presence/presence_api/ServiceExtensions/ServiceExtensions.cs

15 lines
532 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<IUserRepository, SQLUserRepositoryImpl>()
.AddScoped<IPresenceRepository, SQLPresenceRepositoryImpl>()
.AddScoped<GroupUseCase>()
.AddScoped<UserUseCase>()
.AddScoped<PresenceUseCase>();
2024-11-08 06:16:20 +00:00
}
}