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

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using Microsoft.Extensions.Logging;
using NPoco;
@@ -15,7 +15,7 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
/// <summary>
/// Represents the NPoco implementation of <see cref="IConsentRepository"/>.
/// </summary>
internal class ConsentRepository : NPocoRepositoryBase<int, IConsent>, IConsentRepository
internal class ConsentRepository : EntityRepositoryBase<int, IConsent>, IConsentRepository
{
/// <summary>
/// Initializes a new instance of the <see cref="ConsentRepository"/> class.