Example #1
0
        public ActionResult <IEnumerable <Keep> > Get()
        {
            IEnumerable <Keep> results = _pr.GetAll();

            if (results == null)
            {
                return(BadRequest());
            }
            return(Ok(results));
        }
Example #2
0
 public ActionResult <IEnumerable <Keep> > Get()
 {
     try
     {
         return(Ok(_repo.GetAll()));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }
Example #3
0
 public ActionResult <IEnumerable <Keep> > Get()
 {
     try
     {
         var id = HttpContext.User.FindFirstValue("Id");
         return(Ok(_repo.GetAll(id)));
     }
     catch (Exception e)
     {
         return(BadRequest(e));
     }
 }
Example #4
0
 public ActionResult <IEnumerable <Keep> > Get()
 {
     return(Ok(_keepRepo.GetAll()));
 }
Example #5
0
 //get keeps
 public IEnumerable <Keep> Get()
 {
     return(_repo.GetAll());
 }
Example #6
0
        public IEnumerable <Keep> Get()
        {
            var user = HttpContext.User.Identity.Name;

            return(_repo.GetAll());
        }