public UnitOfWork(TestSegurosContext context) { _context = context; SeguridadLogins = new SeguridadLoginRepository(_context); PolizaEncabezados = new PolizaEncabezadoRepository(_context); TipoPoliza = new TipoPolizaRepository(_context); TipoRiesgo = new TipoRiesgoRepository(_context); Cliente = new ClienteRepository(_context); PolizaXCliente = new PolizaXClienteRepository(_context); }
public TipoRiesgoRepository(TestSegurosContext context) : base(context) { }
public LoginController(IConfiguration config, TestSegurosContext context) { _config = config; unitOfWork = new UnitOfWork(context); }
public TipoPolizaRepository(TestSegurosContext context) : base(context) { }
public PolizaXClienteRepository(TestSegurosContext context) : base(context) { }
public PolizaEncabezadoController(TestSegurosContext context) { unitOfWork = new UnitOfWork(context); }
public ClienteController(TestSegurosContext context) { unitOfWork = new UnitOfWork(context); }
public PolizaEncabezadoRepository(TestSegurosContext context) : base(context) { }
public TipoPolizaController(TestSegurosContext context) { unitOfWork = new UnitOfWork(context); }
public Repository(TestSegurosContext context) { Context = context; }
public SeguridadLoginRepository(TestSegurosContext context) : base(context) { }
public TipoRiesgoController(TestSegurosContext context) { unitOfWork = new UnitOfWork(context); }