presence/presence_api/ServiceExtensions/ServiceExtensions.cs

13 lines
366 B
C#
Raw Permalink Normal View History

2024-12-06 08:51:13 +00:00
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>();
}
}