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