public RecordCountCache(int rccid, int tik, RecordSource source, int count, DateTime stamp, DateTime now)
        {
            RCCID     = rccid;
            this.tik  = tik;
            Source    = source;
            Count     = count;
            Timestamp = stamp;

            CheckCache(now);
        }
Esempio n. 2
0
 public static RecordCountCache FetchCountCache(RecordSource source, int tik)
 {
     return(connection.FetchCountCache(source, tik));
 }