예제 #1
0
파일: BackfillTests.cs 프로젝트: norek/Zoe
        public BackfillTests()
        {
            _exchange  = Substitute.For <IExchange>();
            _storage   = Substitute.For <IBackfillStorage>();
            _busClient = Substitute.For <IBusClient>();

            _sut = new Backfill.Backfill(_exchange, _storage, _busClient);
        }
예제 #2
0
파일: Backfill.cs 프로젝트: norek/Zoe
 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;
 }