/// <summary>
 /// Sends the given message to all the aggregation channels, if any exist.
 /// </summary>
 /// <param name="messageText">The message to broadcast.</param>
 /// <returns></returns>
 public async Task BroadcastMessageToAggregationChannelsAsync(string messageText)
 {
     foreach (Party aggregationChannel in RoutingDataManager.GetAggregationParties())
     {
         await SendMessageToPartyByBotAsync(aggregationChannel, messageText);
     }
 }