Koha/C4/SIP/ILS/Transaction/FeePayment.pm
Joe Atzberger 9c811d13be Revising the stub for ILS/Transaction/FeePayment.pm
Obviously more implementation is needed.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2008-09-26 09:07:22 -05:00

19 lines
218 B
Perl

package ILS::Transaction::FeePayment;
use warnings;
use strict;
use vars qw($VERSION @ISA $debug);
BEGIN {
$VERSION = 1.00;
@ISA = qw(ILS::Transaction);
$debug = 0;
}
use ILS;
use ILS::Transaction;
1;
__END__