Beispiel #1
0
 public ActionResult <Example> Add(Example example)
 {
     _repo.InsertEntity(example);
     _repo.Save();
     return(example);
 }