コード例 #1
0
ファイル: KeepsService.cs プロジェクト: AdamCoryat/keepr
        internal IEnumerable <Keep> GetKeepsByProfileId(string userId, string profileId)
        {
            IEnumerable <Keep> keeps = _repo.GetKeepsByProfileId(profileId);

            if (keeps == null)
            {
                throw new Exception("Invalid Id");
            }
            return(keeps);
        }
コード例 #2
0
ファイル: KeepService.cs プロジェクト: MCharron93/Keepr
        public IEnumerable <Keep> GetKeepsByProfileId(string creatorId)
        {
            IEnumerable <Keep> userKeeps = _repo.GetKeepsByProfileId(creatorId);

            return(userKeeps);
        }