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