public ActionResult Update(Furniture_type Update_User)
 {
     Update_User.Furniture_ID = (int)TempData["id"];
     Update_User.update();
     return(RedirectToAction("Index"));
 }
 public ActionResult Add(Furniture_type u)
 {
     u.Add();
     return(View());
 }