コード例 #1
0
ファイル: CardsService.cs プロジェクト: KorbinWilliams/ATM
        internal IEnumerable <Card> GetMyCards(string userId)
        {
            var exists = _repo.GetMyCards(userId);

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