21 lines
563 B
C#
21 lines
563 B
C#
using data;
|
|
using data.Repository;
|
|
using domain.Service;
|
|
using domain.UseCase;
|
|
using Presence.Api.Controllers;
|
|
|
|
namespace Presence.Api.Extensions
|
|
{
|
|
public static class ServiceCollectionsExtension
|
|
{
|
|
public static void AddCommomService(this IServiceCollection services)
|
|
{
|
|
services
|
|
.AddDbContext<RemoteDatabaseContext>()
|
|
.AddScoped<IGroupRepository, SQLGroupRepository>()
|
|
.AddScoped<IGroupUseCase, GroupService>()
|
|
.AddScoped<GroupController>();
|
|
}
|
|
}
|
|
}
|