2020-12-09 13:42:23 +01:00
|
|
|
using Raven.Client.Documents;
|
|
|
|
|
using Raven.Client.Documents.Session;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace zero.Core.Database
|
|
|
|
|
{
|
2021-09-29 11:41:19 +02:00
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2021-09-29 11:41:19 +02:00
|
|
|
|
|
|
|
|
public interface IZeroCoreDocumentSession : IZeroDocumentSession
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2020-12-09 13:42:23 +01:00
|
|
|
}
|