Example #1
0
 public IViewComponentResult Invoke()
 {
     return(View(new PopularProductListViewModel
     {
         popularProducts = _popularProductRepository.GetAll()
     }));//Sizin için seçtiklerimiz kısmı ne kadar ürün koyduysa o kadar gösterilir
 }
Example #2
0
 public List <PopularProduct> GetAll()
 {
     return(_popularProductRepository.GetAll());
 }