Пример #1
0
 [HttpGet("{id}")]                               //keep id
 public ActionResult <Keep> GetKeepsById(int id) //keep id
 {
     try
     {
         return(Ok(_repository.GetKeepsById(id))); //keep id
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }