public ActionResult BestSellers()
        {
            var vm = new BestSellersVM
            {
                Coffes = GetAllBest()
            };

            return(View(vm));
        }
Ejemplo n.º 2
0
        public ActionResult BestSellers()
        {
            var model = new BestSellersVM
            {
                Products = GetBestSellers()
            };

            return(PartialView(model));
        }