Beispiel #1
0
 private void SetChannelsIds(ChannelIdsDto channelIds)
 {
     var query = new AllChannelsQuery();
     _allChannelQueryHandler.CreateOrUpdateValueById<ChannelIdsDto>(query, channelIds);
 }
Beispiel #2
0
 public ChannelIdsDto GetChannelList()
 {
     var query = new AllChannelsQuery();
     return _allChannelQueryHandler.GetValueById(query);
 }