Exemplo n.º 1
0
        public ActionResult NavigateByCategory(int id)
        {
            var ads = bridge.GetAds().Where(x => x.CategoryId == id);

            return(View(ads));
        }