public GtfsDistributedRecord(GtfsRecord baseRec, int current) : base(baseRec) { if (current > 9) { throw new ArgumentOutOfRangeException(); } this.current = current; }
public GtfsRecord(GtfsRecord other) { this.header = other.header; this.currentLine = other.currentLine; }