21 lines
557 B
C#
21 lines
557 B
C#
|
using data;
|
|||
|
using data.Repository;
|
|||
|
using domain.Service;
|
|||
|
using domain.UseCase;
|
|||
|
using Presence.API.Controllers;
|
|||
|
|
|||
|
namespace Presence.API.Extensions
|
|||
|
{
|
|||
|
public static class ServiceCollectionExtension
|
|||
|
{
|
|||
|
public static void AddCommonServices(this IServiceCollection services)
|
|||
|
{
|
|||
|
services
|
|||
|
.AddDbContext<DatabaseContext>()
|
|||
|
.AddScoped<IGroupRepository, SQLGroupRepository>()
|
|||
|
.AddScoped<IGroupUseCase, GroupService>()
|
|||
|
.AddScoped<GroupController>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|