14 lines
455 B
C#
14 lines
455 B
C#
using CuentasCobrar.INFRASTRUCTURE.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace CuentasCobrar.API.Installers
|
|
{
|
|
public class DBContextInstaller : IInstaller
|
|
{
|
|
public void InstallServices(IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.AddDbContext<CuentasCobrarContext>(options =>
|
|
options.UseSqlServer(configuration.GetConnectionString("CuentasCobrar")));
|
|
}
|
|
}
|
|
}
|