Adf.Business.ValueObject.Sofinummer.IsValidSofinummer C# (CSharp) Method

IsValidSofinummer() private static method

Checks whether the supplied value is a valid Sofinummer or not.
private static IsValidSofinummer ( string newvalue ) : bool
newvalue string The value to check.
return bool
        private static bool IsValidSofinummer(string newvalue)
        {
            return /*Expression.IsMatch(newvalue) &&*/ ElfProefSofi(newvalue);
        }