public AlquilerController(AlquilerContext context)
 {
     _alquilerService = new AlquilerService(context);
 }
예제 #2
0
 public MarcaController(AlquilerContext context)
 {
     _eqService = new MarcaService(context);
 }
예제 #3
0
 public EquipoController(AlquilerContext context)
 {
     _eqService = new EquipoService(context);
 }
예제 #4
0
 public AlquilerService(AlquilerContext context)
 {
     _context = context;
 }
예제 #5
0
 public MarcaService(AlquilerContext context)
 {
     _context = context;
 }
예제 #6
0
 public EquipoService(AlquilerContext context)
 {
     _context = context;
 }
예제 #7
0
 public ClienteService(AlquilerContext context)
 {
     _context = context;
 }
예제 #8
0
 public ClienteController(AlquilerContext context)
 {
     _cltService = new ClienteService(context);
 }