Exemplo n.º 1
0
 public ActionResult <IEnumerable <Keep> > GetVKByVaultId(int vaultId)
 {
     try
     {
         return(Ok(_repo.GetVKByVaultId(vaultId)));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }