public MessageProcessor(
     TelegramProxies.MinunBot proxy,
     MinunDispatcher dispatcher,
     Queries.StatePeakQuery lastStateQuery,
     DataAccess.Commands.Raid.IModifyChatTitleCommand modifyChatTitleCommand
     ) : base(proxy, dispatcher, lastStateQuery, modifyChatTitleCommand)
 {
 }
 public BaseMessageProcessor(
     TelegramBotClient proxy,
     BaseDispatcher dispatcher,
     Queries.StatePeakQuery lastStateQuery,
     DataAccess.Commands.Raid.IModifyChatTitleCommand modifyChatTitleCommand
     )
 {
     this.proxy                  = proxy;
     this.dispatcher             = dispatcher;
     this.lastStateQuery         = lastStateQuery;
     this.modifyChatTitleCommand = modifyChatTitleCommand;
 }
 public MessageProcessor(
     TelegramProxies.PogoTelegramProxy proxy,
     RaidDispatcher dispatcher,
     Queries.StatePeakQuery lastStateQuery,
     DataAccess.Commands.Raid.IModifyChatTitleCommand modifyChatTitleCommand
     )
     : base(proxy, dispatcher, lastStateQuery, modifyChatTitleCommand)
 {
     this.proxy          = proxy;
     this.dispatcher     = dispatcher;
     this.lastStateQuery = lastStateQuery;
 }