10 lines
307 B
C#
10 lines
307 B
C#
using Zurnal.Date.Repository.SQLRepos;
|
|
using Zurnal.Domain.UseCase;
|
|
|
|
public static class ServiceExtensions {
|
|
public static void ConfigurateGroup(this IServiceCollection services){
|
|
services
|
|
.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
|
|
.AddScoped<GroupUseCase>();
|
|
}
|
|
} |