Пример #1
0
 public MenuFacade(IMenuService menuService, IMenuTranslationService menuTranslationService, IRestaurantService restaurantService, IRestaurantTranslationService restaurantTranslationService
                   , IRestaurantWaiterService restaurantWaiterService)
 {
     _menuService                  = menuService;
     _menuTranslationService       = menuTranslationService;
     _restaurantService            = restaurantService;
     _restaurantTranslationService = restaurantTranslationService;
     _restaurantWaiterService      = restaurantWaiterService;
 }
Пример #2
0
 public CategoryFacade(ICategoryService categoryService, ICategoryTranslationService categoryTranslationService, IMenuService menuService, IManageStorage manageStorage, IMenuTranslationService menuTranslationService
                       , IRestaurantService restaurantService)
 {
     _categoryService            = categoryService;
     _categoryTranslationService = categoryTranslationService;
     _menuService            = menuService;
     _manageStorage          = manageStorage;
     _menuTranslationService = menuTranslationService;
     _restaurantService      = restaurantService;
 }
Пример #3
0
 public CategoryFacade(ICategoryService categoryService, ICategoryTranslationService categoryTranslationService, IMenuService menuService, IManageStorage manageStorage, IMenuTranslationService menuTranslationService
                       , IRestaurantService restaurantService, IUnitOfWorkAsync unitOfWork) : base(unitOfWork)
 {
     _categoryService            = categoryService;
     _categoryTranslationService = categoryTranslationService;
     _menuService            = menuService;
     _manageStorage          = manageStorage;
     _menuTranslationService = menuTranslationService;
     _restaurantService      = restaurantService;
 }
Пример #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;
 }
Пример #5
0
        public ItemFacade(ICategoryService categoryService, IitemService itemService, IitemTranslationService itemTranslationService, IItemSizeService itemSizeService, IItemSideItemService itemSideItemService
                          , IManageStorage manageStorage, ISizeTranslationService sizeTranslationService, ISideItemTranslationService sideItemTranslationService, ICategoryTranslationService categoryTranslationService,
                          IMenuService menuService, IRestaurantService restaurantService, IPageService pageService, ITemplateService templateService, IMenuTranslationService menuTranslationService, IUnitOfWorkAsync unitOfWork) : base(unitOfWork)
        {
            _categoryService            = categoryService;
            _itemService                = itemService;
            _itemTranslationService     = itemTranslationService;
            _itemSideItemService        = itemSideItemService;
            _itemSizeService            = itemSizeService;
            _manageStorage              = manageStorage;
            _categoryTranslationService = categoryTranslationService;
            _sizeTranslationService     = sizeTranslationService;
            _sideItemTranslationService = sideItemTranslationService;
            _menuService                = menuService;
            _restaurantService          = restaurantService;

            _pageService            = pageService;
            _templateService        = templateService;
            _menuTranslationService = menuTranslationService;
        }