RDBO Support.
[kivitendo-erp.git] / SL / DB / Helpers / ALL.pm
1 package SL::DB::Helpers::ALL;
2
3 use strict;
4
5 use SL::DB::Assembly;
6 use SL::DB::Bin;
7 use SL::DB::Business;
8 use SL::DB::Chart;
9 use SL::DB::Customer;
10 use SL::DB::DeliveryOrder;
11 use SL::DB::DeliveryOrderItem;
12 use SL::DB::DeliveryOrderItemsStock;
13 use SL::DB::GLTransaction;
14 use SL::DB::Invoice;
15 use SL::DB::InvoiceItem;
16 use SL::DB::Order;
17 use SL::DB::OrderItem;
18 use SL::DB::Part;
19 use SL::DB::PriceFactor;
20 use SL::DB::Printer;
21 use SL::DB::Project;
22 use SL::DB::PurchaseInvoice;
23 use SL::DB::Shipto;
24 use SL::DB::TransferType;
25 use SL::DB::Unit;
26 use SL::DB::Vendor;
27 use SL::DB::Warehouse;
28
29 1;
30
31 __END__
32
33 =pod
34
35 =head1 NAME
36
37 SL::DB::Helpers::ALL: Dependency-only package for all SL::DB::* modules
38
39 =head1 SYNOPSIS
40
41   use SL::DB::Helpers::ALL;
42
43 =head1 DESCRIPTION
44
45 This module depends on all modules in SL/DB/*.pm for the convenience
46 of being able to write a simple \C<use SL::DB::Helpers::ALL> and
47 having everything loaded. This is supposed to be used only in the
48 Lx-Office console. Normal modules should C<use> only the modules they
49 actually need.
50
51 =head1 AUTHOR
52
53 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
54
55 =cut