public ActionResult Edit(Employee employee)
 {
     db.Update(employee);
     return(RedirectToAction("Index", "Home"));
 }