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