Пример #1
0
 public MasterMigratingTable(IConfigurationService <MTableConfiguration> configService,
                             IChainTable2 oldTable, IChainTable2 newTable, IChainTableMonitor monitor,
                             MTableOptionalBug?bugToEnable = null)
     : base(configService, oldTable, newTable, monitor, bugToEnable)
 {
     this.configService = configService;
 }
 public MasterMigratingTable(IConfigurationService<MTableConfiguration> configService,
     IChainTable2 oldTable, IChainTable2 newTable, IChainTableMonitor monitor,
     MTableOptionalBug? bugToEnable = null)
     : base(configService, oldTable, newTable, monitor, bugToEnable)
 {
     this.configService = configService;
 }
 public MigratingTable(IReadOnlyConfigurationService <MTableConfiguration> configService,
                       IChainTable2 oldTable, IChainTable2 newTable, IChainTableMonitor monitor, MTableOptionalBug?bugToEnable = null)
 {
     this.enabledBug    = bugToEnable;
     this.configService = configService;
     this.oldTable      = oldTable;
     this.newTable      = newTable;
     this.monitor       = monitor;
 }