Beispiel #1
0
 public IEnumerable <Keeps> Get()
 {
     return(db.GetAll());
 }
Beispiel #2
0
 internal IEnumerable <Keep> GetAll()
 {
     return(_repo.GetAll());
 }
Beispiel #3
0
 public ActionResult <IEnumerable <Keep> > Get()
 {
     return(Ok(_kr.GetAll()));
 }
Beispiel #4
0
        internal IEnumerable <Keep> GetAll()
        {
            IEnumerable <Keep> keeps = _repo.GetAll();

            return(keeps);
        }
Beispiel #5
0
        public IEnumerable <Keep> GetAll()
        {
            IEnumerable <Keep> keeps = _repo.GetAll();

            return(keeps);
        }