24 lines
810 B
C#
24 lines
810 B
C#
|
|
using BMA.EHR.Application.Common.Interfaces;
|
|||
|
|
using BMA.EHR.Infrastructure.Persistence;
|
|||
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using Microsoft.Extensions.Configuration;
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Infrastructure
|
|||
|
|
{
|
|||
|
|
public static class InfrastructureServiceRegistration
|
|||
|
|
{
|
|||
|
|
public static IServiceCollection AddPersistence(this IServiceCollection services,
|
|||
|
|
IConfiguration configuration)
|
|||
|
|
{
|
|||
|
|
services.AddDbContext<ApplicationDBContext>(options =>
|
|||
|
|
options.UseOracle(configuration.GetConnectionString("DefaultConnection"),
|
|||
|
|
b => b.MigrationsAssembly(typeof(ApplicationDBContext).Assembly.FullName)), ServiceLifetime.Transient);
|
|||
|
|
|
|||
|
|
services.AddScoped<IApplicationDBContext>(provider => provider.GetService<ApplicationDBContext>());
|
|||
|
|
|
|||
|
|
return services;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|