コード例 #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;
 }