public ReservationsController(IReservationService reservationService, IMailService emailService,
                               IAdminTourService tours)
 {
     this.reservationService = reservationService;
     this.emailService       = emailService;
     this.tours = tours;
 }
 public ToursController(IAdminTourService tours, IHtmlService html)
 {
     this.tours = tours;
     this.html  = html;
 }
示例#3
0
 public EditTourController(IAdminTourService tours)
 {
     this.tours = tours;
 }