コード例 #1
0
ファイル: ColorsController.cs プロジェクト: antonreznik/Shop
        public ActionResult AdminGetAllColorsFromProduct(int ProductId, int CategoryId, string productName)
        {
            TempData["CategoryName"] = productName;
            IQueryable <Color> colors = colorRepo.AdminGetAllColorsFromBase(ProductId, CategoryId);

            return(View("GetAllColorsFromProduct", colors));
        }