Example #1
0
 public HotelFacade(IHotelService HotelService, IHotelTranslationService typeTranslationService, IManageStorage manageStorage, IHotelFeatureService hotelFeatureService)
 {
     _hotelService            = HotelService;
     _hotelTranslationService = typeTranslationService;
     _manageStorage           = manageStorage;
     _hotelFeatureService     = hotelFeatureService;
 }
Example #2
0
 public HotelFacade(IHotelService hotelService, IUnitOfWorkAsync unitOfWork, IHotelTranslationService typeTranslationService, IManageStorage manageStorage, IHotelFeatureService hotelFeatureService) : base(unitOfWork)
 {
     _hotelService            = hotelService;
     _hotelTranslationService = typeTranslationService;
     _manageStorage           = manageStorage;
     _hotelFeatureService     = hotelFeatureService;
 }