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