public MasterMigratingTable(IConfigurationService<MTableConfiguration> configService,
     IChainTable2 oldTable, IChainTable2 newTable, IChainTableMonitor monitor,
     MTableOptionalBug? bugToEnable = null)
     : base(configService, oldTable, newTable, monitor, bugToEnable)
 {
     this.configService = configService;
 }
 internal bool IsBugEnabled(MTableOptionalBug bug)
 {
     return(enabledBug == bug);
 }