public Fact(Int64 EntryId, SegmentInformation Segment, TemporalInformation Temporal, MeasureInformation Measure) { this._EntryId = EntryId; this._Segment = Segment; this.Temporal = Temporal; this.Measure = Measure; }
public Competition(Int16 CompetitionId, string CompetitionName, TemporalInformation StartTemporal, TemporalInformation StopTemporal, string CompetitionDescription) { this.CompetitionId = CompetitionId; this.CompetitionName = CompetitionName; this.StartTemporal = StartTemporal; this.StopTemporal = StopTemporal; this.CompetitionDescription = CompetitionDescription; }
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; }
public Fact(Int64 EntryId, TemporalInformation Temporal, SpatialInformation Spatial) { this._EntryId = EntryId; this.Temporal = Temporal; this.Spatial = Spatial; }