public ActionResult <IEnumerable <User> > GetUserList() { return(new JsonResult(_signupRepo.GetSignedUpUsers())); }
public bool UserHasSignedup(int userId) { return(_signupRepository.GetSignedUpUsers().FirstOrDefault(x => x.UserId == userId) != null); }