Files
Orchard/src/Orchard.Web/Core/Common/Services/IRoutableService.cs

8 lines
277 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Orchard.Core.Common.Services {
public interface IRoutableService : IDependency {
string Slugify(string title);
string GenerateUniqueSlug(string slugCandidate, IEnumerable<string> existingSlugs);
}
}