public ActionResult BestSellers() { var vm = new BestSellersVM { Coffes = GetAllBest() }; return(View(vm)); }
public ActionResult BestSellers() { var model = new BestSellersVM { Products = GetBestSellers() }; return(PartialView(model)); }