6 lines
197 B
C#
6 lines
197 B
C#
|
|
namespace Brizco.Repository.Repositories.Base.Contracts
|
|||
|
|
{
|
|||
|
|
public interface IBaseRepository<T> : IDisposable, IReadRepository<T>, IWriteRepository<T> where T : class, IApiEntity
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|