public IEnumerable <Keep> Get(int vaultId)
 {
     return(_repo.GetKeeps(vaultId));
 }
Beispiel #2
0
 public ActionResult <IEnumerable <Keep> > GetKeeps(int id)
 {
     return(Ok(_tr.GetKeeps(id)));
 }