Пример #1
0
        public ActionResult Detail(int id)
        {
            var bus = new DribbbleBus();
            var shot = bus.GetShot(id);

            return View(shot);
        }
Пример #2
0
        public ActionResult Detalhe(int id)
        {
            var bus = new DribbbleBus();
            var shot = bus.GetShot(id);

            return View("~/Views/Dribbble/Detalhe.cshtml", shot);
        }