public ActionResult FullOption()
        {
            ViewBag.M = "Info";
            var model = new RepoForHome();

            return(View(model.GetAll()));
        }
        public ActionResult Index()
        {
            var model = new RepoForHome();

            return(View(model.GetOne(1)));
        }