Ejemplo n.º 1
0
 public Fact(Int64 EntryId, SegmentInformation Segment, TemporalInformation Temporal, SpatialInformation Spatial, MeasureInformation Measure)
 {
     this._Segment = Segment;
     this.Temporal = Temporal;
     this.Spatial = Spatial;
     this.Measure = Measure;
 }
Ejemplo n.º 2
0
 public Fact(QualityInformation Quality, SegmentInformation Segment, TemporalInformation Temporal, SpatialInformation Spatial, MeasureInformation Measure)
 {
     this._Quality = Quality;
     this._Segment = Segment;
     this.Temporal = Temporal;
     this.Spatial = Spatial;
     this.Measure = Measure;
 }
Ejemplo n.º 3
0
 public Fact(Int64 EntryId, int CarId, Int64 TripId, QualityInformation Quality, SegmentInformation Segment, TemporalInformation Temporal, SpatialInformation Spatial, MeasureInformation Measure, FlagInformation Flag)
 {
     this._EntryId = EntryId;
     this.CarId = CarId;
     this._TripId = TripId;
     this._Quality = Quality;
     this._Segment = Segment;
     this.Temporal = Temporal;
     this.Spatial = Spatial;
     this.Measure = Measure;
     this.Flag = Flag;
 }
Ejemplo n.º 4
0
 public Fact(Int64 EntryId, TemporalInformation Temporal, SpatialInformation Spatial)
 {
     this._EntryId = EntryId;
     this.Temporal = Temporal;
     this.Spatial = Spatial;
 }