NAME

Business::DE::Konto - Validating Bank-Account Numbers for Germany

SYNOPSIS

use Business::DE::Konto;
my $konto = Business::DE::Konto->new(%hash);

DESCRIPTION

  use Business::DE::Konto;
  my $konto = Business::DE::Konto->new(%hash);

  where %hash can have zero, one or more of the following entries:
  BLZFILE => '/path/to/BLZ.dat'
  BLZ     => 12345678
  KONTO   => 1234567890

  e.g.:

  my $konto = Business::DE::Konto->new(BLZFILE => '/path/to/BLZ.dat');

  check():
  $konto->check(%hash);
  where %hash can have zero, one or more of the following entries:
  BLZ     => 12345678
  KONTO   => 1234567890

  e.g.:
  $konto->check(BLZ => 12345678, KONTO => 1234567890);
  $konto->check(BLZ => 22233333, KONTO => 2222222222);

	or
  use Business::DE::Konto;
  my $konto = Business::DE::Konto->new(BLZ => 12345678, KONTO => 1234567890));
  $konto->check();

EXPORT

None by default. All methods are accessed over the object.

AUTHOR

Tina Mueller, tinita@cpan.org

SEE ALSO

perl(1).