Files
mixtape/zero.Core/Database/ZeroDocumentSession.cs
T
2021-05-20 15:21:37 +02:00

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
{
}
}