public HomeController(IMovieService movieService, ISeriesService seriesService, IVideoGameService videoGameService, IBookService bookService, ICategoryService categoryService, IMainCategoryService mainCategoryService)
 {
     _movieService        = movieService;
     _seriesService       = seriesService;
     _videoGameService    = videoGameService;
     _bookService         = bookService;
     _categoryService     = categoryService;
     _mainCategoryService = mainCategoryService;
 }
Ejemplo n.º 2
0
 public Product(IProductService productService, IBrandService brandService, IMainCategoryService maincategoryService, ISubCategoryService subcategoryService, IProductPictureService productPictureService, IBasketService basketService, IAppUserService userService)
 {
     _productService        = productService;
     _brandService          = brandService;
     _maincategoryService   = maincategoryService;
     _subcategoryService    = subcategoryService;
     _productPictureService = productPictureService;
     _basketService         = basketService;
     _userService           = userService;
 }
Ejemplo n.º 3
0
 public MainCategoriesController(IMainCategoryService mainCategoryService)
 {
     this.mainCategoryService = mainCategoryService;
 }
Ejemplo n.º 4
0
 public CategoryController(ICategoryService categoryService, IMainCategoryService mainCategoryService)
 {
     _mainCategoryService = mainCategoryService;
     _categoryService     = categoryService;
 }
Ejemplo n.º 5
0
 public CategoriesController(ICategoryService categoryService, IMainCategoryService mainCategoryService)
 {
     this.categoryService     = categoryService;
     this.mainCategoryService = mainCategoryService;
 }
Ejemplo n.º 6
0
 public CategoriesNavigationViewComponent(IMainCategoryService mainCategoryService)
 {
     this.mainCategoryService = mainCategoryService;
 }
 public ErrorController(IMainCategoryService mainCategoryService)
 {
     _mainCategoryService = mainCategoryService;
 }
Ejemplo n.º 8
0
 public MainCategoriesController(IMainCategoryService mainCategorySrv)
 {
     _mainCategorySrv = mainCategorySrv;
 }