Exemplo n.º 1
0
 public void Initialise()
 {
     _source1 = new SourceList <int>();
     _source2 = new SourceList <int>();
     _source3 = new SourceList <int>();
     _source  = new SourceList <IObservable <IChangeSet <int> > >();
     _results = _source.And().AsAggregator();
 }
Exemplo n.º 2
0
 public void Initialise()
 {
     _source1 = new SourceCache <Person, string>(p => p.Name);
     _source2 = new SourceCache <Person, string>(p => p.Name);
     _source3 = new SourceCache <Person, string>(p => p.Name);
     _source  = new SourceList <IObservable <IChangeSet <Person, string> > >();
     _results = _source.And().AsAggregator();
 }
Exemplo n.º 3
0
 public DynamicAndFixture()
 {
     _source1 = new SourceList <int>();
     _source2 = new SourceList <int>();
     _source3 = new SourceList <int>();
     _source  = new SourceList <IObservable <IChangeSet <int> > >();
     _results = _source.And().AsAggregator();
 }