コード例 #1
0
ファイル: KeepsService.cs プロジェクト: LeviSmithCodes/Keepr
 public IEnumerable <Keep> GetKeepsByUserId(string userId)
 {
     return(_repo.GetKeepsByUserId(userId));
 }
コード例 #2
0
ファイル: KeepsService.cs プロジェクト: davidwfolk/keepr
 internal IEnumerable <Keep> GetByUserId(string userId)
 {
     return(_repo.GetKeepsByUserId(userId));
 }
コード例 #3
0
ファイル: KeepsService.cs プロジェクト: austinhugus/Keepr
 internal object GetByUserId(string userId)
 {
     return(_repo.GetKeepsByUserId(userId));
 }