Exemple #1
0
 public ActionResult <IEnumerable <Keep> > GetAllPublicKeeps()
 {
     try
     {
         return(Ok(_repo.GetAllPublicKeeps()));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }