Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 public static RecordCountCache FetchCountCache(RecordSource source, int tik)
 {
     return(connection.FetchCountCache(source, tik));
 }