mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
20 lines
636 B
C#
20 lines
636 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using ShoppingAssistantApi.Application.IRepositories;
|
|
using ShoppingAssistantApi.Persistance.Database;
|
|
using ShoppingAssistantApi.Persistance.Repositories;
|
|
|
|
namespace ShoppingAssistantApi.Persistance.PersistanceExtentions;
|
|
|
|
public static class RepositoriesExtention
|
|
{
|
|
public static IServiceCollection AddInfrastructure(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<MongoDbContext>();
|
|
|
|
services.AddScoped<IRolesRepository, RolesRepository>();
|
|
services.AddScoped<IUsersRepository, UsersRepository>();
|
|
|
|
return services;
|
|
}
|
|
}
|