Beispiel #1
0
        public ActionResult <IEnumerable <Keep> > Get()
        {
            IEnumerable <Keep> keepList = _kr.GetAllPublic();

            if (keepList != null)
            {
                return(Ok(keepList));
            }
            return(BadRequest("Could not make query"));
        }