presence/presence_api/ServiceExtensions/ServiceExtensions.cs
Class_Student e771fe1659 new
2024-12-06 11:51:13 +03:00

13 lines
366 B
C#

using presence.Data.Repository;
using presence.Domain.UseCase;
namespace presence.presence_api.ServiceExtensions;
public static class ServiceExtensions
{
public static void ConfigurateGroup(this IServiceCollection services)
{
services
.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
.AddScoped<GroupUseCase>();
}
}