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