using System.Collections.Generic; using Deltares.Standard.Specifications.Extensions; namespace Deltares.Standard.Specifications { public static class Validator { public static IEnumerable Validate(T target) { return target.Validate(); } } }