Exemple #1
0
 public BlockedDateController(IBlockedDateRepository blockedDateRepository)
 {
     this.blockedDateRepository = blockedDateRepository;
 }
Exemple #2
0
 public BookingController(IBookingRepository bookingRepository, IEmailNotificationRepository emailNotificationRepository, IBlockedDateRepository blockedDateRepository)
 {
     this.bookingRepository           = bookingRepository;
     this.emailNotificationRepository = emailNotificationRepository;
     this.blockedDateRepository       = blockedDateRepository;
 }