// GET: info1/Edit/5
        public ActionResult Edit(int Id)
        {
            DBhandle dbh = new DBhandle();

            return(View(dbh.Getdetail().Find(smodel => smodel.Id == Id)));
        }
        // GET: info1
        public ActionResult Index()
        {
            DBhandle handle = new DBhandle();

            return(View(handle.Getdetail()));
        }