Remove unneeded NPocoRepositoryBase

This commit is contained in:
Shannon
2020-12-22 10:30:16 +11:00
parent c761fa0506
commit 3e948475a6
28 changed files with 41 additions and 67 deletions

View File

@@ -15,7 +15,7 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
{
// TODO: We need to get a readonly ISO code for the domain assigned
internal class DomainRepository : NPocoRepositoryBase<int, IDomain>, IDomainRepository
internal class DomainRepository : EntityRepositoryBase<int, IDomain>, IDomainRepository
{
public DomainRepository(IScopeAccessor scopeAccessor, AppCaches cache, ILogger<DomainRepository> logger)
: base(scopeAccessor, cache, logger)