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