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

@@ -16,7 +16,7 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
/// <summary>
/// Simple abstract ReadOnly repository used to simply have PerformGet and PeformGetAll with an underlying cache
/// </summary>
internal abstract class SimpleGetRepository<TId, TEntity, TDto> : NPocoRepositoryBase<TId, TEntity>
internal abstract class SimpleGetRepository<TId, TEntity, TDto> : EntityRepositoryBase<TId, TEntity>
where TEntity : class, IEntity
where TDto: class
{