Exemplo n.º 1
0
 public IActionResult UpdateHuman(Human human)
 {
     HumanLogic.Update(human.HumandID, human);
     return(RedirectToAction(nameof(ListAllHumans)));
 }
Exemplo n.º 2
0
 public void UpdateHuman(string oldid, [FromBody] Human item)
 {
     logic.Update(oldid, item);
 }