예제 #1
0
 public EmpleadoController(PruebaTcontext context)
 {
     this._empleadoRepository = new EmpleadoRepository(context);
 }
예제 #2
0
 public EmpleadoRepository(PruebaTcontext context)
 {
     _context = context;
 }
예제 #3
0
 public CuentaRepository(PruebaTcontext context)
 {
     _context = context;
 }
예제 #4
0
 public CuentasController(PruebaTcontext context)
 {
     _cuentaRepository = new CuentaRepository(context);
 }