示例#1
0
 public IList<ReplayDto> GetReplaysByPlayerUser(int playerUserId, PagingInfo pagingInfo)
 {
     return _replayRepository.GetByPlayerUser(playerUserId, pagingInfo);
 }
示例#2
0
 public IList<ReplayDto> GetReplays(PagingInfo pagingInfo, string searchText)
 {
     return _replayRepository.GetForList(pagingInfo, searchText);
 }