initialize in SL::DB::Objects statt im MetaSetup
[kivitendo-erp.git] / SL / DB / PriceFactor.pm
1 package SL::DB::PriceFactor;
2
3 use strict;
4
5 use SL::DB::MetaSetup::PriceFactor;
6 use SL::DB::Helper::ActsAsList;
7
8 __PACKAGE__->meta->initialize;
9
10 __PACKAGE__->meta->make_manager_class;
11
12 1;
13
14 __END__
15
16 =pod
17
18 =head1 NAME
19
20 SL::DB::PriceFactor: Model for the 'price_factors' table
21
22 =head1 SYNOPSIS
23
24 This is a standard Rose::DB::Object based model and can be used as one.
25
26 =head1 FUNCTIONS
27
28 None so far.
29
30 =head1 AUTHOR
31
32 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
33
34 =cut