- added for Pacients: POST: /register POST: /login POST: /reset_password PUT: /profile DELETE: /profile - added for Doctors: POST: /register POST: /login POST: /reset_password PUT: /profile DELETE: /profile - added for MedicalHistories: POST: /:id (only by pacient) - done GET: /:id (only by pacient) - done PUT: /:id (only by doctor) - done PUT /grand_access - TODO
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Infrastructure.Data;
|
|
using Infrastructure.Services.MongoDB;
|
|
using Application.Services.Database;
|
|
using Infrastructure.Services.PostgreSQL;
|
|
|
|
namespace Infrastructure;
|
|
|
|
public static class DependencyInjection
|
|
{
|
|
public static IServiceCollection AddInfrastructureServices(this IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.AddDbContext<HealthcareManagerDatabase>(options =>
|
|
options.UseNpgsql(configuration.GetConnectionString("HealthcareManagerDatabase")));
|
|
|
|
|
|
services.AddScoped<IPacientRepository, PacientRepository>();
|
|
services.AddScoped<IDoctorRepository, DoctorRepository>();
|
|
services.AddScoped<IMedicalHistoryRepository, MedicalHistoryRepository>();
|
|
|
|
var mongoDbConnection = configuration.GetConnectionString("MongoDBDatabase");
|
|
|
|
services.AddSingleton(serviceProvider => new MongoDbService(mongoDbConnection));
|
|
|
|
// services.AddScoped<IEmailService, EmailService>();
|
|
|
|
return services;
|
|
}
|
|
}
|