示例#1
0
        public void RemoveSnapshot(string sessionId, string snapshotId)
        {
            Contract.NotNull <ArgumentNullException>(sessionId);
            Contract.NotNull <ArgumentNullException>(snapshotId);

            inMemoryStorage.RemoveSnapshot(sessionId, snapshotId);
            dataProvider.RemoveSnapshot(sessionId, snapshotId);
        }