d2b95b4aea
This reverts commit 3954f95abc.
21 lines
423 B
C#
21 lines
423 B
C#
using Raven.Client.Documents;
|
|
using Raven.Client.Documents.Session;
|
|
using System;
|
|
|
|
namespace zero.Core.Database
|
|
{
|
|
public class ZeroDocumentSession : AsyncDocumentSession, IZeroDocumentSession
|
|
{
|
|
public ZeroDocumentSession(DocumentStore documentStore, Guid id, SessionOptions options) : base(documentStore, id, options)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public interface IZeroDocumentSession : IAsyncDocumentSession
|
|
{
|
|
|
|
}
|
|
}
|