Пример #1
0
        public BackfillTests()
        {
            _exchange  = Substitute.For <IExchange>();
            _storage   = Substitute.For <IBackfillStorage>();
            _busClient = Substitute.For <IBusClient>();

            _sut = new Backfill.Backfill(_exchange, _storage, _busClient);
        }
Пример #2
0
 public Backfill(IExchange exchange, IBackfillStorage storage, IBusClient bus)
 {
     _exchange = exchange;
     _storage  = storage;
     _bus      = bus;
 }
Пример #3
0
 public Simulation(IBackfillStorage storage, IBusClient bus)
 {
     _storage = storage;
     _bus     = bus;
 }