public ReservationsController(MotelContext context, IReservationService reservationService)
 {
     _context            = context;
     _reservationService = reservationService;
 }
Exemplo n.º 2
0
 public RoomsController(MotelContext context)
 {
     _context = context;
     _context.Database.EnsureCreated();
 }
Exemplo n.º 3
0
 public UsersController(MotelContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ReservationService(MotelContext context)
 {
     _context = context;
 }