10 lines
253 B
C#
10 lines
253 B
C#
|
|
|||
|
public static class ServiceExtensions
|
|||
|
{
|
|||
|
public static void ConfigurateGroup(this IServiceCollection services)
|
|||
|
{
|
|||
|
services
|
|||
|
.AddScoped<IGroupRepository.SQLGroupRepositoryImp>()
|
|||
|
.AddScoped<GroupUseCase>();
|
|||
|
}
|
|||
|
}
|