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

26 lines
526 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
{
public class ZeroDocumentSession : AsyncDocumentSession, IZeroDocumentSession, IZeroCoreDocumentSession
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
{
}
public interface IZeroCoreDocumentSession : IZeroDocumentSession
{
}
2020-12-09 13:42:23 +01:00
}