示例#1
0
        /// <summary>
        /// Determines whether the specified account number is valid. The account number
        /// is given as a full number including the hypothetical check digit.
        /// validation steps:
        /// * bank code can have 4 digits max
        /// * branch code can have 4 digits max
        /// * account number can have 13 digits max (including 2 check digits)
        /// * check digit is valid
        /// </summary>
        /// <param name="accountNumber">The account number including the hypothetical check digit.</param>
        /// <param name="validationErrors">Collection is filled up with the validation error messages</param>
        /// <returns>
        ///   <c>true</c> if the specified account number is valid; otherwise, <c>false</c>.
        /// </returns>
        public bool Validate(NationalAccountNumber accountNumber, ICollection <ValidationError> validationErrors)
        {
            if (accountNumber == null)
            {
                throw new ArgumentNullException("accountNumber", "Please provide an account number.");
            }

            validationErrors = validationErrors ?? new List <ValidationError>();

            var portugalAccountNumber = new PortugalAccountNumber(accountNumber);

            ValidationMethodsTools.ValidateMember(portugalAccountNumber.AccountNumber, 13, validationErrors, ValidationErrorCodes.AccountNumberMissing, ValidationErrorCodes.AccountNumberTooLong);
            ValidationMethodsTools.ValidateMember(portugalAccountNumber.BankCode, 4, validationErrors, ValidationErrorCodes.BankCodeMissing, ValidationErrorCodes.BankCodeTooLong);
            ValidationMethodsTools.ValidateMember(portugalAccountNumber.Branch, 4, validationErrors, ValidationErrorCodes.BranchCodeMissing, ValidationErrorCodes.BranchCodeTooLong);

            if (validationErrors.Count > 0)
            {
                return(false);
            }

            var fullAccountNumber =
                String.Format("{0,4}{1,4}{2,13}", portugalAccountNumber.BankCode, portugalAccountNumber.Branch, portugalAccountNumber.AccountNumber).Replace(' ', '0');

            if (!validationMethod.IsValid(fullAccountNumber))
            {
                validationErrors.AddValidationErrorMessage("The validation of the check digits failed.");
            }

            return(validationErrors.Count == 0);
        }
示例#2
0
        /// <summary>
        /// Calculates the check digit.
        /// The account number is given without a check digit.
        /// </summary>
        /// <param name="accountNumber">The account number without a check digit.</param>
        /// <returns>
        /// The calculated check digit for the given account number
        /// </returns>
        public string CalculateCheckDigit(NationalAccountNumber accountNumber)
        {
            if (accountNumber == null)
            {
                throw new ArgumentNullException("accountNumber", "Please provide an account number.");
            }

            var portugalAccountNumber = new PortugalAccountNumber(accountNumber);

            if (String.IsNullOrEmpty(portugalAccountNumber.BankCode))
            {
                throw new ArgumentException("The bank code is missing.", "accountNumber");
            }
            if (String.IsNullOrEmpty(portugalAccountNumber.Branch))
            {
                throw new ArgumentException("The branch code is missing.", "accountNumber");
            }
            if (String.IsNullOrEmpty(portugalAccountNumber.AccountNumber))
            {
                throw new ArgumentException("The account number is missing.", "accountNumber");
            }

            var fullAccountNumber =
                String.Format("{0,4}{1,4}{2,11}", portugalAccountNumber.BankCode, portugalAccountNumber.Branch, portugalAccountNumber.AccountNumber).Replace(' ', '0');

            return(validationMethod.CalculateCheckDigit(fullAccountNumber));
        }