public IngresoControllers(NerudaContext _context)
 {
     _ingresoService = new IngresoService(_context);
 }
Exemplo n.º 2
0
 public IngresoService(NerudaContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ClienteService(NerudaContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ReservaService(NerudaContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public AcompananteControllers(NerudaContext _context)
 {
     _acompananteService = new AcompañanteService(_context);
 }
Exemplo n.º 6
0
 public HabitacionService(NerudaContext context)
 {
     _context = context;
 }
 public HabitacionControllers(NerudaContext _context)
 {
     _habitacionService = new HabitacionService(_context);
 }
 public ClienteControllers(NerudaContext _context)
 {
     _clienteService = new ClienteService(_context);
 }
Exemplo n.º 9
0
 public AcompañanteService(NerudaContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public ReservaControllers(NerudaContext context)
 {
     _reservaService = new ReservaService(context);
 }