Example #1
0
        public ActionResult <IEnumerable <Cat> > GetCats()
        {
            IList <Cat> allCats = catRepo.GetAll();

            return(Ok(allCats));
        }