]> wagnertech.de Git - mfinanz.git/blob - SL/DB/Manager/GLTransaction.pm
date error in mapping
[mfinanz.git] / SL / DB / Manager / GLTransaction.pm
1 package SL::DB::Manager::GLTransaction;
2
3 use strict;
4
5 use parent qw(SL::DB::Helper::Manager);
6
7
8 sub object_class { 'SL::DB::GLTransaction' }
9
10 __PACKAGE__->make_manager_methods;
11
12 sub type_filter {
13   my $class = shift;
14   my $type  = lc(shift || '');
15
16   return if $type eq 'gl_transaction';
17
18   die "Unknown type $type";
19 }
20
21 1;