示例#1
0
 public ActionResult <Example> Update(Example example)
 {
     _repo.UpdateEntity(example);
     _repo.Save();
     return(example);
 }