Exemplo n.º 1
0
        internal IEnumerable <Card> GetMyCards(string userId)
        {
            var exists = _repo.GetMyCards(userId);

            if (exists == null)
            {
                throw new Exception("You have no Cards");
            }
            return(exists);
        }