2024-11-16 12:02:17 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using presence.data.Repository;
|
|
|
|
using presence.domain.UseCase;
|
|
|
|
|
|
|
|
namespace presence_api.ServiceExtensions
|
|
|
|
{
|
|
|
|
public static class ServiceExtensions
|
|
|
|
{
|
|
|
|
public static void ConfigureGroup(this IServiceCollection services)
|
|
|
|
{
|
|
|
|
services
|
|
|
|
.AddScoped<IGroupRepository, SQLGroupRepositoryImpl>()
|
|
|
|
.AddScoped<GroupUseCase>();
|
|
|
|
}
|
2024-11-16 14:13:06 +00:00
|
|
|
|
|
|
|
public static void ConfigureUser(this IServiceCollection services)
|
|
|
|
{
|
|
|
|
services
|
|
|
|
.AddScoped<IUserRepository, SQLUserRepositoryImpl>()
|
|
|
|
.AddScoped<UserUseCase>();
|
|
|
|
}
|
2024-11-16 12:02:17 +00:00
|
|
|
}
|
|
|
|
}
|