Git Product home page Git Product logo

hungarianbankaccount's Introduction

HungarianBankAccount

This library written in C# checks the validity of a Hungarian bank account number (in GIRO format) and determines which bank it belongs to.

Usage

Let's check a valid bank account:

string validAccountNumber = "10032000-01076349";
var accountValid = new BankAccount(validAccountNumber);
System.Console.WriteLine($"{accountValid.AccountNumber}: IsValid = {accountValid.IsValid}, Bank = {accountValid.Bank}");

An invalid bank account will return IsValid = false and throws FormatException when Bank property is read:

var accountInvalidNumber = new BankAccount("00000000-00000000-00000001");
System.Console.WriteLine($"{accountInvalidNumber.AccountNumber}: IsValid = {accountInvalidNumber.IsValid}");
try
{
    System.Console.WriteLine($"Checking bank details for {accountInvalidNumber.AccountNumber}");
    System.Console.WriteLine(accountInvalidNumber.Bank);
}
catch (FormatException)
{
    System.Console.WriteLine($"{typeof(FormatException)} was thrown because account number was not valid");
}

When the syntax of the bank account number is correct, but it doesn't belong to any known bank KeyNotFoundException is thrown:

var accountInvalidBank = new BankAccount("00000000-00000000");
System.Console.WriteLine($"{accountInvalidBank.AccountNumber}: IsValid = {accountInvalidBank.IsValid} (it's technically valid)");
try
{
    System.Console.WriteLine($"Checking bank details for {accountInvalidBank.AccountNumber}");
    System.Console.WriteLine(accountInvalidBank.Bank);
}
catch (KeyNotFoundException)
{
    System.Console.WriteLine($"{typeof(KeyNotFoundException)} was thrown, because the bank account number doesn't belong to any known bank.");
}

Alternatively you can use the static Validator.Validate(string accountNumber) method to check if the number is syntactically and mathematically correct.

Download from Nuget

'nuget badge'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.