Exemplo n.º 1
0
        public Bundle GetPage(string snapshotkey, int start = 0, int count = DEFAULT_PAGE_SIZE)
        {
            Snapshot snapshot = store.GetSnapshot(snapshotkey);

            return(GetPage(snapshot, start, count));
        }
Exemplo n.º 2
0
        public Bundle GetPage(string snapshotId, int start, int count)
        {
            Snapshot snapshot = _store.GetSnapshot(snapshotId);

            return(GetPage(snapshot, start, count));
        }