Exemplo n.º 1
0
        public async Task <IReadOnlyList <ReportChannelDto> > GetAllAsync()
        {
            var data = await _channelManager.GetAllChannelsAsync();

            return(data.Select(e => new ReportChannelDto(e.ChannelId, e.Type, e.ChatId, e.Interval, e.Metainfo)).ToList());
        }