public BackfillTests() { _exchange = Substitute.For <IExchange>(); _storage = Substitute.For <IBackfillStorage>(); _busClient = Substitute.For <IBusClient>(); _sut = new Backfill.Backfill(_exchange, _storage, _busClient); }
public Backfill(IExchange exchange, IBackfillStorage storage, IBusClient bus) { _exchange = exchange; _storage = storage; _bus = bus; }
public Simulation(IBackfillStorage storage, IBusClient bus) { _storage = storage; _bus = bus; }