public FeatureFacade(IUnitOfWorkAsync unitOFWork, IFeatureService featureService, IFeatureTranslationService featureTranslationService, IUserService userService, IFeatureDetailService featureDetailService, IFeatureDetailTranslationService featureDetailTranslationService, IManageStorage manageStorage, IRoomService roomService, IRestaurantService restaurantService, IFeatureControlService featureControlService, ISupervisorFeatureService supervisorFeatureService, IAvailableService availableService, IReceptionistService receptionistService) : base(unitOFWork)
 {
     _featureService            = featureService;
     _featureTranslationService = featureTranslationService;
     _userService                     = userService;
     _featureDetailService            = featureDetailService;
     _featureDetailTranslationService = featureDetailTranslationService;
     _manageStorage                   = manageStorage;
     _roomService                     = roomService;
     _restaurantService               = restaurantService;
     //_controlService = controlService;
     _featureControlService    = featureControlService;
     _supervisorFeatureService = supervisorFeatureService;
     _availableService         = availableService;
     _receptionistService      = receptionistService;
 }
Beispiel #2
0
 public FeatureFacade(IFeatureService FeatureService, IFeatureTranslationService typeTranslationService, IManageStorage manageStorage)
 {
     _featureService         = FeatureService;
     _typeTranslationService = typeTranslationService;
     _manageStorage          = manageStorage;
 }
Beispiel #3
0
 public FeatureFacade(IFeatureService FeatureService, IUnitOfWorkAsync unitOfWork, IFeatureTranslationService typeTranslationService, IManageStorage manageStorage) : base(unitOfWork)
 {
     _featureService         = FeatureService;
     _typeTranslationService = typeTranslationService;
     _manageStorage          = manageStorage;
 }