public Fact(Int64 EntryId, SegmentInformation Segment, TemporalInformation Temporal, MeasureInformation Measure) { this._EntryId = EntryId; this._Segment = Segment; this.Temporal = Temporal; this.Measure = Measure; }
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; }
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; }