Пример #1
0
 public ActionResult <Keep> Get(int id)
 {
     try
     {
         return(Ok(_repo.GetKeepbyId(id)));
     }
     catch
     {
         return(BadRequest("F**k you"));
     }
 }