public HomeController(ITempRoomService tempRoomServices, IRoomPriceCalculationService roomPriceCalculationService, IReservationService reservationService, IHelperProvider helperProvider)
 {
     _tempRoomServices            = tempRoomServices;
     _roomPriceCalculationService = roomPriceCalculationService;
     _reservationService          = reservationService;
     _helperProvider = helperProvider;
 }
Beispiel #2
0
 public ReservationService(IReservationRepository reservationRepository, ITempRoomService tempRoomService) : base(reservationRepository)
 {
     _tempRoomService = tempRoomService;
 }