public BookingRoomController(ReservacionHotelContext context)
 {
     _context = context;
 }
 public FacilitieListController(ReservacionHotelContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public RoomTypeController(ReservacionHotelContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public PaymentMethodController(ReservacionHotelContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public GuestController(ReservacionHotelContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public RoomFacilitiesController(ReservacionHotelContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public CustomerController(ReservacionHotelContext context)
 {
     _context = context;
 }