Install the package with NuGet:
dotnet add package uBeac.Repositories.Abstractions
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>
{
}