public ActionResult List(int page) { var bus = new DribbbleBus(); var shots = bus.GetShots(page); return View(shots); }
// // GET: /Index/ public ActionResult Index() { var bus = new DribbbleBus(); var shots = bus.GetShots(); return View("~/Views/Dribbble/List.cshtml", shots); }
public ActionResult Detail(int id) { var bus = new DribbbleBus(); var shot = bus.GetShot(id); return View(shot); }
public ActionResult Detalhe(int id) { var bus = new DribbbleBus(); var shot = bus.GetShot(id); return View("~/Views/Dribbble/Detalhe.cshtml", shot); }