@using Karsha_Site.Application.Services.Products.Queries.GetProductForSite; @model ResultProductForSiteDto; @{ ViewData["Title"] = "Index"; Layout = "~/Views/Shared/_Layout.cshtml"; } محصولات ما گروه کارخانجات دنیای فلز @{ string activeClass = ""; string activeClass2 = ""; } @if (Model.CatId.HasValue && Model.CatId!= null) { } else { activeClass = "active"; } همه محصولات @foreach(var cat in Model.Categories) { if (Model.CatId.HasValue && Model.CatId.Value == cat.ID) { activeClass2 = "active"; } else { activeClass2 = ""; } @cat.Title } @foreach(var item in Model.Products) { @item.Title @item.Price } محصولات بیشتر