Process() public method

public Process ( BankAccountDetails bankAccountDetails ) : bool
bankAccountDetails ModulusChecking.Models.BankAccountDetails
return bool
        /// <summary>
        /// If there are no SortCode Modulus Weight Mappings available then the BankAccountDetails validate as true.
        /// Otherwise move onto the first modulus calculation step
        /// </summary>
        public bool Process(BankAccountDetails bankAccountDetails)
        {
            var isValidForModulusCheck      = bankAccountDetails.IsValidForModulusCheck();
            var isUncheckableForeignAccount = bankAccountDetails.IsUncheckableForeignAccount();

            if (!isValidForModulusCheck || isUncheckableForeignAccount)
            {
                return(true);
            }

            var result = _firstModulusCalculatorStep.Process(bankAccountDetails);

            return(result);
        }
 /// <summary>
 /// If there are no SortCode Modulus Weight Mappings available then the BankAccountDetails validate as true.
 /// Otherwise move onto the first modulus calculation step
 /// </summary>
 public bool Process(BankAccountDetails bankAccountDetails)
 {
     return(!bankAccountDetails.IsValidForModulusCheck() ||
            bankAccountDetails.IsUncheckableForeignAccount() ||
            _firstModulusCalculatorStep.Process(bankAccountDetails));
 }