12 lines
289 B
C#
12 lines
289 B
C#
|
using data.Repository;
|
||
|
using domain.UseCase;
|
||
|
|
||
|
public static class ServiceExtensions
|
||
|
{
|
||
|
public static void ConfigurateGroup(this IServiceCollection services)
|
||
|
{
|
||
|
services
|
||
|
.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
|
||
|
.AddScoped<GroupUseCase>();
|
||
|
}
|
||
|
}
|