Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

uBeac.Repositories.Abstractions: Provides base repository interfaces

Nuget version Nuget downloads

Start

Install the package with NuGet:

dotnet add package uBeac.Repositories.Abstractions

Create your repository interfaces

Just create an interface and inherit from IRepository or IEntityRepository:

public interface IYourRepository : IRepository
{
}

public interface IYourRepository : IEntityRepository<YourEntityKey, YourEntity>
{
}

public interface IYourRepository : IEntityRepository<YourEntity>
{
}