dotnet-object-storage/PoweredSoft.ObjectStorage.Core/IObjectStorageContext.cs
2019-02-12 23:39:55 -05:00

10 lines
186 B
C#

using System;
namespace PoweredSoft.ObjectStorage.Core
{
public interface IObjectStorageContext
{
IObjectStorageCollection<TEntity> GetCollection<TEntity>();
}
}