10 lines
284 B
C#
10 lines
284 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>();
|
||
|
}
|
||
|
}
|