dotnet-object-storage/PoweredSoft.ObjectStorage.Core/IObjectStorageContext.cs

10 lines
186 B
C#
Raw Permalink Normal View History

2019-02-12 17:39:16 -05:00
using System;
namespace PoweredSoft.ObjectStorage.Core
{
2019-02-12 23:39:55 -05:00
public interface IObjectStorageContext
2019-02-12 17:39:16 -05:00
{
IObjectStorageCollection<TEntity> GetCollection<TEntity>();
}
}