示例#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();
 }
示例#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();
 }
 public DynamicAndFixture()
 {
     _source1 = new SourceList <int>();
     _source2 = new SourceList <int>();
     _source3 = new SourceList <int>();
     _source  = new SourceList <IObservable <IChangeSet <int> > >();
     _results = _source.And().AsAggregator();
 }