2020-04-07 16:42:21 +10:00
|
|
|
|
using Umbraco.Core.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Services
|
2017-05-12 14:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2019-01-22 18:03:39 -05:00
|
|
|
|
/// Placeholder for sharing logic between the content, media (and member) services
|
2017-05-12 14:49:44 +02:00
|
|
|
|
/// TODO: Start sharing the logic!
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IContentServiceBase : IService
|
2020-04-07 01:02:08 +10:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2020-04-07 16:42:21 +10:00
|
|
|
|
/// Checks/fixes the data integrity of node paths/levels stored in the database
|
2020-04-07 01:02:08 +10:00
|
|
|
|
/// </summary>
|
2020-04-07 16:42:21 +10:00
|
|
|
|
ContentDataIntegrityReport CheckDataIntegrity(ContentDataIntegrityReportOptions options);
|
2020-04-07 01:02:08 +10:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|