namespace DelftTools.Utils.Validation { public interface IValidator where S : class { ValidationReport Validate(T rootObject, S target = null); } }