11 lines
277 B
C#

using HRD.WebApi.DAL;
namespace HRD.WebApi.Repositories
{
public abstract class BaseRepository<T> : BaseRepositoryCore<T> where T : BaseEntity
{
public BaseRepository(WebApiBaseContext repositoryContext) : base(repositoryContext)
{
}
}
}