public AdminController(
     IReservationWeekRepository reservationWeekRepository
     , IReservationDayRepository reservationDayRepository)
 {
     _reservationWeekRepository = reservationWeekRepository;
     _reservationDayRepository  = reservationDayRepository;
 }
Beispiel #2
0
 public ReservationController(IReservationWeekRepository reservationWeekRepository)
 {
     _reservationWeekRepository = reservationWeekRepository;
 }