Skip to content

Instantly share code, notes, and snippets.

@trnktms
Last active May 18, 2018 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trnktms/0a093f311718fa622f9dcc7de6eb6997 to your computer and use it in GitHub Desktop.
Save trnktms/0a093f311718fa622f9dcc7de6eb6997 to your computer and use it in GitHub Desktop.
namespace Helix.Skeleton.Foundation.Pages.Validators.Base
{
using System;
using Sitecore.Data.Items;
using Sitecore.Data.Validators;
public interface IBaseTemplateDependentValidator
{
ValidatorResult Evaluate<T>(T baseValidator, Func<ValidatorResult> evaluate, Func<Item> getItem)
where T : StandardValidator;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment