AB4227 - Moved Persistence Repository implementations
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Umbraco.Core.IO;
|
||||
using Umbraco.Core.Models;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Repositories.Implement
|
||||
{
|
||||
internal class PartialViewMacroRepository : PartialViewRepository, IPartialViewMacroRepository
|
||||
{
|
||||
public PartialViewMacroRepository(IFileSystems fileSystems, IIOHelper ioHelper)
|
||||
: base(fileSystems.MacroPartialsFileSystem, ioHelper)
|
||||
{ }
|
||||
|
||||
protected override PartialViewType ViewType => PartialViewType.PartialViewMacro;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user