presence/presence_api/ServiceExtensions/ServiceExtensions.cs

12 lines
289 B
C#
Raw Normal View History

2024-11-14 08:01:32 +00:00
using data.Repository;
using domain.UseCase;
public static class ServiceExtensions
{
public static void ConfigurateGroup(this IServiceCollection services)
{
services
.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
.AddScoped<GroupUseCase>();
}
}