예제 #1
0
 public AdminNavbarController(INavbarService navbarService, IMenuService menuService, IMenuTypeService menutypeService, ISocialService socialService)
 {
     _navbarService   = navbarService;
     _menuService     = menuService;
     _menutypeService = menutypeService;
     _socialService   = socialService;
 }
예제 #2
0
 public BranchController
 (
     IStatsService statService,
     IUserService userService,
     ICustomerService customerService,
     IOrderService orderService,
     IDocumentService documentService,
     IMenuTypeService menuTypeService,
     IMenuService menuService,
     ITableService tableService,
     IFirmService firmService,
     UserManager <ApplicationUser> userManager,
     ILogger <BranchController> logger
 )
 {
     _firmService     = firmService;
     _userManager     = userManager;
     _tableService    = tableService;
     _menuService     = menuService;
     _menuTypeService = menuTypeService;
     _documentService = documentService;
     _orderService    = orderService;
     _customerService = customerService;
     _userService     = userService;
     _logger          = logger;
     _statService     = statService;
 }
예제 #3
0
 public ProductController(IProductService productService, IProductAdvertisementService productAdvertisementService, IBrandService brandService, IProductCategoryService productCategoryService, IFooterClientService footerClientService, IMenuService menuService, IContentCategoryService contentCategoryService, IMenuTypeService menuTypeService)
 {
     _productService = productService;
     _productAdvertisementService = productAdvertisementService;
     _productCategoryService      = productCategoryService;
     _brandService           = brandService;
     _footerClientService    = footerClientService;
     _menuService            = menuService;
     _contentCategoryService = contentCategoryService;
     _menuTypeService        = menuTypeService;
 }
 public CustomerController(IBranchService branchService, ICountryService countryService, ILogger <CustomerController> logger, ITableService tableService, ICustomerService customerService, IMenuTypeService menuTypeService, IFirmService firmService, IOrderService orderService)
 {
     _logger          = logger;
     _tableService    = tableService;
     _customerService = customerService;
     _menuTypeService = menuTypeService;
     _firmService     = firmService;
     _branchService   = branchService;
     _countryService  = countryService;
     _orderService    = orderService;
 }
예제 #5
0
 public HomeController(IProductService productService, IProductAdvertisementService productAdvertisementService, IBrandService brandService, IProductCategoryService productCategoryService, IFooterClientService footerClientService, IMenuService menuService, IContentCategoryService contentCategoryService, IMenuTypeService menuTypeService, IProductSpecSpecValueService productSpecSpecValueService, IOrderDetailTempService orderDetailTempService)
 {
     _productService = productService;
     _productAdvertisementService = productAdvertisementService;
     _productCategoryService      = productCategoryService;
     _brandService                = brandService;
     _footerClientService         = footerClientService;
     _menuService                 = menuService;
     _contentCategoryService      = contentCategoryService;
     _menuTypeService             = menuTypeService;
     _productSpecSpecValueService = productSpecSpecValueService;
     _orderDetailTempService      = orderDetailTempService;
 }
예제 #6
0
 public ManageMenuController()
 {
     service         = new MenuService();
     menuTypeService = new MenuTypeService();
 }