public ActionResult Edit(Worker worker) { _context.Entry(worker).State = EntityState.Modified; _context.SaveChanges(); return(Redirect("/workers")); }
public ActionResult Edit(Project project) { _context.Entry(project).State = EntityState.Modified; _context.SaveChanges(); return(Redirect("/projects")); }