コード例 #1
0
ファイル: ReplayService.cs プロジェクト: Drake103/Wrc
 public IList<ReplayDto> GetReplaysByPlayerUser(int playerUserId, PagingInfo pagingInfo)
 {
     return _replayRepository.GetByPlayerUser(playerUserId, pagingInfo);
 }
コード例 #2
0
ファイル: ReplayService.cs プロジェクト: Drake103/Wrc
 public IList<ReplayDto> GetReplays(PagingInfo pagingInfo, string searchText)
 {
     return _replayRepository.GetForList(pagingInfo, searchText);
 }