Files
mixtape/zero.Core/Database/ZeroDocumentSession.cs
T

21 lines
423 B
C#
Raw Normal View History

2020-12-09 13:42:23 +01:00
using Raven.Client.Documents;
using Raven.Client.Documents.Session;
using System;
namespace zero.Core.Database
{
2021-05-20 15:21:37 +02:00
public class ZeroDocumentSession : AsyncDocumentSession, IZeroDocumentSession
2020-12-09 13:42:23 +01:00
{
public ZeroDocumentSession(DocumentStore documentStore, Guid id, SessionOptions options) : base(documentStore, id, options)
{
}
}
2021-05-20 15:21:37 +02:00
2020-12-09 13:42:23 +01:00
public interface IZeroDocumentSession : IAsyncDocumentSession
{
}
}