public DataNavigate_TimeLine(DataReaderFactory fac, DataCache_Code dataCache_Code, double currentTime) { this.fac = fac; this.dataCache_Code = dataCache_Code; this.code = dataCache_Code.Code; this.currentTime = currentTime; }
public DataNavigate_Code(DataReaderFactory fac, string code, int startDate, int endDate, double currentTime) { this.fac = fac; this.code = code; this.startDate = startDate; this.endDate = endDate; this.currentTime = currentTime; this.dataCache_Code = new DataCache_Code(fac, code); this.dayDataBuilderCache = new RealTimeDataBuilder_DayDataCache(dataCache_Code); this.navigate_Real = new DataNavigate_TimeLine(fac, dataCache_Code, currentTime); }