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