Exemple #1
0
        internal IEnumerable <Keep> GetMyKeeps(string userId)
        {
            var exists = _repo.GetMyKeeps(userId);

            if (exists == null)
            {
                throw new Exception("You have no keeps");
            }
            return(exists);
        }
Exemple #2
0
 public IEnumerable <Keep> GetMyKeeps(string userId)
 {
     return(_repo.GetMyKeeps(userId));
 }
Exemple #3
0
 internal IEnumerable<Keep> GetMyKeeps(string UserId)
 {
   return _repo.GetMyKeeps(UserId);
 }