public PageListResult <PlayInfoDto> GetPlayInfoPageList(PlayInfoSearchDto playInfoSearchDto)
        {
            if (!playInfoSearchDto.ChannelId.HasValue)
            {
                return(new PageListResult <PlayInfoDto>());
            }
            var result = _playInfoService.GetPlayInfoPageList(playInfoSearchDto);

            return(result);
        }
Exemplo n.º 2
0
        public PageListResult <PlayInfoDto> GetPlayInfoPageList(PlayInfoSearchDto playInfoSearchDto)
        {
            var result = _playInfoService.GetPlayInfoPageList(playInfoSearchDto);

            return(result);
        }