Adjust namespace in Umbraco.PublishedCache.NuCache

This commit is contained in:
Mole
2021-02-10 10:46:52 +01:00
parent 53622407b5
commit 737b471647
55 changed files with 77 additions and 101 deletions

View File

@@ -1,9 +1,7 @@
using System.Collections.Generic;
using Umbraco.Cms.Core.Models;
using Umbraco.Core.Models;
using Umbraco.Web.PublishedCache.NuCache;
namespace Umbraco.Infrastructure.PublishedCache.Persistence
namespace Umbraco.Cms.Infrastructure.PublishedCache.Persistence
{
public interface INuCacheContentRepository
{

View File

@@ -1,9 +1,7 @@
using System.Collections.Generic;
using Umbraco.Cms.Core.Models;
using Umbraco.Core.Models;
using Umbraco.Web.PublishedCache.NuCache;
namespace Umbraco.Infrastructure.PublishedCache.Persistence
namespace Umbraco.Cms.Infrastructure.PublishedCache.Persistence
{
/// <summary>
/// Defines a data source for NuCache.

View File

@@ -10,6 +10,7 @@ using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Persistence.Querying;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Strings;
using Umbraco.Cms.Infrastructure.PublishedCache.DataSource;
using Umbraco.Core.Persistence;
using Umbraco.Core.Persistence.Dtos;
using Umbraco.Core.Persistence.Repositories;
@@ -17,12 +18,10 @@ using Umbraco.Core.Persistence.Repositories.Implement;
using Umbraco.Core.Scoping;
using Umbraco.Core.Serialization;
using Umbraco.Extensions;
using Umbraco.Web.PublishedCache.NuCache;
using Umbraco.Web.PublishedCache.NuCache.DataSource;
using static Umbraco.Cms.Core.Persistence.SqlExtensionsStatics;
using Constants = Umbraco.Cms.Core.Constants;
namespace Umbraco.Infrastructure.PublishedCache.Persistence
namespace Umbraco.Cms.Infrastructure.PublishedCache.Persistence
{
public class NuCacheContentRepository : RepositoryBase, INuCacheContentRepository
{

View File

@@ -3,15 +3,11 @@ using Microsoft.Extensions.Logging;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Scoping;
using Umbraco.Core;
using Umbraco.Core.Events;
using Umbraco.Core.Models;
using Umbraco.Core.Scoping;
using Umbraco.Core.Services.Implement;
using Umbraco.Web.PublishedCache.NuCache;
using Constants = Umbraco.Cms.Core.Constants;
namespace Umbraco.Infrastructure.PublishedCache.Persistence
namespace Umbraco.Cms.Infrastructure.PublishedCache.Persistence
{
public class NuCacheContentService : RepositoryService, INuCacheContentService
{