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);
        }