public IEnumerable <Keeps> Get() { return(db.GetAll()); }
internal IEnumerable <Keep> GetAll() { return(_repo.GetAll()); }
public ActionResult <IEnumerable <Keep> > Get() { return(Ok(_kr.GetAll())); }
internal IEnumerable <Keep> GetAll() { IEnumerable <Keep> keeps = _repo.GetAll(); return(keeps); }
public IEnumerable <Keep> GetAll() { IEnumerable <Keep> keeps = _repo.GetAll(); return(keeps); }