Ejemplo n.º 1
0
 public MenuFacade(IMenuService menuService, IMenuTranslationService menuTranslationService, IRestaurantService restaurantService, IRestaurantTranslationService restaurantTranslationService
                   , IRestaurantWaiterService restaurantWaiterService)
 {
     _menuService                  = menuService;
     _menuTranslationService       = menuTranslationService;
     _restaurantService            = restaurantService;
     _restaurantTranslationService = restaurantTranslationService;
     _restaurantWaiterService      = restaurantWaiterService;
 }
Ejemplo n.º 2
0
 public RequestFacade(IUnitOfWorkAsync unitOfWork, IRequestService requestService, IReceptionistService receptionistService, ISupervisorService supervisorService, IRequestDetailService requestDetailService, IUserService userService, IFeatureDetailService featureDetailService, IRestaurantWaiterService restaurantWaiterService) : base(unitOfWork)
 {
     _requestService          = requestService;
     _receptionistService     = receptionistService;
     _supervisorService       = supervisorService;
     _requestDetailService    = requestDetailService;
     _userService             = userService;
     _featureDetailService    = featureDetailService;
     _restaurantWaiterService = restaurantWaiterService;
 }
Ejemplo n.º 3
0
 public RoomFacade(IUnitOfWorkAsync unitOFWork, IRoomService roomService, IUserService userService, IAdminService adminService, IPackageService packageService, ISupervisorService supervisorService, IReceptionistService receptionistService, IRestaurantWaiterService restaurantWaiterService) : base(unitOFWork)
 {
     _roomService             = roomService;
     _userService             = userService;
     _adminService            = adminService;
     _packageService          = packageService;
     _supervisorService       = supervisorService;
     _receptionistService     = receptionistService;
     _restaurantWaiterService = restaurantWaiterService;
 }
Ejemplo n.º 4
0
 public MenuFacade(IMenuService menuService, IMenuTranslationService menuTranslationService, IRestaurantService restaurantService, IRestaurantTranslationService restaurantTranslationService
                   , IRestaurantWaiterService restaurantWaiterService, IManageStorage manageStorage, IUnitOfWorkAsync unitOfWork) : base(unitOfWork)
 {
     _menuService                  = menuService;
     _menuTranslationService       = menuTranslationService;
     _restaurantService            = restaurantService;
     _restaurantTranslationService = restaurantTranslationService;
     _restaurantWaiterService      = restaurantWaiterService;
     _manageStorage                = manageStorage;
 }
Ejemplo n.º 5
0
 public RestaurantFacade(IRestaurantTypeService restaurantTypeService,
                         IRestaurantTypeTranslationService restaurantTypeTranslationService
                         , IRestaurantService restaurantService, IRestaurantTranslationService restaurantTranslationService,
                         IUserService userService, IRestaurantAdminService restaurantAdminService
                         , IManageStorage manageStorage, IRestaurantWaiterService restaurantWaiterService, IAdminService globalAdminService, IUnitOfWorkAsync unitOfWork, IPackageService packageService, IMenuService menuService, IFeedBackService feedBackService) : base(unitOfWork)
 {
     _restaurantTypeService            = restaurantTypeService;
     _restaurantTypeTranslationService = restaurantTypeTranslationService;
     _restaurantService            = restaurantService;
     _restaurantTranslationService = restaurantTranslationService;
     _userService             = userService;
     _restaurantAdminService  = restaurantAdminService;
     _manageStorage           = manageStorage;
     _restaurantWaiterService = restaurantWaiterService;
     _globalAdminService      = globalAdminService;
     _packageService          = packageService;
     _menuService             = menuService;
     _feedBackService         = feedBackService;
 }