SchamInfo -> Rose Model
[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::BankAccount;
7 use SL::DB::Bin;
8 use SL::DB::Buchungsgruppe;
9 use SL::DB::Business;
10 use SL::DB::Chart;
11 use SL::DB::Contact;
12 use SL::DB::CustomVariable;
13 use SL::DB::CustomVariableConfig;
14 use SL::DB::CustomVariableValidity;
15 use SL::DB::Customer;
16 use SL::DB::DeliveryOrder;
17 use SL::DB::DeliveryOrderItem;
18 use SL::DB::DeliveryOrderItemsStock;
19 use SL::DB::Draft;
20 use SL::DB::Dunning;
21 use SL::DB::DunningConfig;
22 use SL::DB::Employee;
23 use SL::DB::FollowUp;
24 use SL::DB::FollowUpLink;
25 use SL::DB::GLTransaction;
26 use SL::DB::GenericTranslation;
27 use SL::DB::History;
28 use SL::DB::Invoice;
29 use SL::DB::InvoiceItem;
30 use SL::DB::Language;
31 use SL::DB::Licemse;
32 use SL::DB::Note;
33 use SL::DB::Order;
34 use SL::DB::OrderItem;
35 use SL::DB::Part;
36 use SL::DB::PaymentTerm;
37 use SL::DB::PriceFactor;
38 use SL::DB::Pricegroup;
39 use SL::DB::Printer;
40 use SL::DB::Project;
41 use SL::DB::PurchaseInvoice;
42 use SL::DB::RMA;
43 use SL::DB::SepaExport;
44 use SL::DB::SepaExportItem;
45 use SL::DB::SchemaInfo;
46 use SL::DB::Shipto;
47 use SL::DB::Tax;
48 use SL::DB::Taxkey;
49 use SL::DB::TransferType;
50 use SL::DB::Unit;
51 use SL::DB::Vendor;
52 use SL::DB::Warehouse;
53
54
55
56 1;
57
58 __END__
59
60 =pod
61
62 =head1 NAME
63
64 SL::DB::Helpers::ALL: Dependency-only package for all SL::DB::* modules
65
66 =head1 SYNOPSIS
67
68   use SL::DB::Helpers::ALL;
69
70 =head1 DESCRIPTION
71
72 This module depends on all modules in SL/DB/*.pm for the convenience
73 of being able to write a simple \C<use SL::DB::Helpers::ALL> and
74 having everything loaded. This is supposed to be used only in the
75 Lx-Office console. Normal modules should C<use> only the modules they
76 actually need.
77
78 =head1 AUTHOR
79
80 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
81
82 =cut