Example #1
0
 public UserReservationsController()
 {
     _accountSqlExecutor      = new AccountSqlExecutor();
     _reservationsSqlExecutor = new ReservationsSqlExecutor();
     _offerSqlExecutor        = new OffersSqlExecutor();
 }
 public OffersController()
 {
     _offersSqlExecutor  = new OffersSqlExecutor();
     _accountSqlExecutor = new AccountSqlExecutor();
     _hotelsSqlExecutor  = new HotelsSqlExecutor();
 }
Example #3
0
 public HotelsController()
 {
     _hotelsSqlExecutor  = new HotelsSqlExecutor();
     _accountSqlExecutor = new AccountSqlExecutor();
 }
Example #4
0
 public AccountController()
 {
     _accountSqlExecutor = new AccountSqlExecutor();
 }