Ejemplo n.º 1
0
 public ActionResult <Keep> GetKeepById(int id)
 {
     try
     {
         return(Ok(_repo.GetByKeepId(id)));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }