예제 #1
0
 public Fact(Int64 EntryId, SegmentInformation Segment, TemporalInformation Temporal, MeasureInformation Measure)
 {
     this._EntryId = EntryId;
     this._Segment = Segment;
     this.Temporal = Temporal;
     this.Measure = Measure;
 }
예제 #2
0
 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;
 }
예제 #3
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;
 }
예제 #4
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;
 }
예제 #5
0
 public Fact(Int64 EntryId, TemporalInformation Temporal, SpatialInformation Spatial)
 {
     this._EntryId = EntryId;
     this.Temporal = Temporal;
     this.Spatial = Spatial;
 }