Pflichtenheft-Angebot/Auftrag: DB-Schema & Models
[kivitendo-erp.git] / SL / DB / Helper / ALL.pm
1 package SL::DB::Helper::ALL;
2
3 use strict;
4
5 use SL::DB::AccTransaction;
6 use SL::DB::Assembly;
7 use SL::DB::AuthClient;
8 use SL::DB::AuthClientUser;
9 use SL::DB::AuthClientGroup;
10 use SL::DB::AuthGroup;
11 use SL::DB::AuthGroupRight;
12 use SL::DB::AuthUser;
13 use SL::DB::AuthUserConfig;
14 use SL::DB::AuthUserGroup;
15 use SL::DB::BackgroundJob;
16 use SL::DB::BackgroundJobHistory;
17 use SL::DB::BankAccount;
18 use SL::DB::Bin;
19 use SL::DB::Buchungsgruppe;
20 use SL::DB::Business;
21 use SL::DB::Chart;
22 use SL::DB::Contact;
23 use SL::DB::CsvImportProfile;
24 use SL::DB::CsvImportProfileSetting;
25 use SL::DB::CsvImportReport;
26 use SL::DB::CsvImportReportRow;
27 use SL::DB::CsvImportReportStatus;
28 use SL::DB::Currency;
29 use SL::DB::CustomVariable;
30 use SL::DB::CustomVariableConfig;
31 use SL::DB::CustomVariableValidity;
32 use SL::DB::Customer;
33 use SL::DB::Datev;
34 use SL::DB::Default;
35 use SL::DB::DeliveryOrder;
36 use SL::DB::DeliveryOrderItem;
37 use SL::DB::DeliveryOrderItemsStock;
38 use SL::DB::DeliveryTerm;
39 use SL::DB::Department;
40 use SL::DB::Draft;
41 use SL::DB::Dunning;
42 use SL::DB::DunningConfig;
43 use SL::DB::Employee;
44 use SL::DB::Exchangerate;
45 use SL::DB::Finanzamt;
46 use SL::DB::FollowUp;
47 use SL::DB::FollowUpAccess;
48 use SL::DB::FollowUpLink;
49 use SL::DB::GLTransaction;
50 use SL::DB::GenericTranslation;
51 use SL::DB::History;
52 use SL::DB::Inventory;
53 use SL::DB::Invoice;
54 use SL::DB::InvoiceItem;
55 use SL::DB::Language;
56 use SL::DB::MakeModel;
57 use SL::DB::Note;
58 use SL::DB::Object::Hooks;
59 use SL::DB::Object;
60 use SL::DB::Order;
61 use SL::DB::OrderItem;
62 use SL::DB::Part;
63 use SL::DB::PartsGroup;
64 use SL::DB::PaymentTerm;
65 use SL::DB::PeriodicInvoice;
66 use SL::DB::PeriodicInvoicesConfig;
67 use SL::DB::PriceFactor;
68 use SL::DB::Pricegroup;
69 use SL::DB::Price;
70 use SL::DB::Printer;
71 use SL::DB::Project;
72 use SL::DB::ProjectParticipant;
73 use SL::DB::ProjectPhase;
74 use SL::DB::ProjectPhaseParticipant;
75 use SL::DB::ProjectRole;
76 use SL::DB::ProjectStatus;
77 use SL::DB::ProjectType;
78 use SL::DB::PurchaseInvoice;
79 use SL::DB::RecordLink;
80 use SL::DB::RequirementSpecAcceptanceStatus;
81 use SL::DB::RequirementSpecComplexity;
82 use SL::DB::RequirementSpecDependency;
83 use SL::DB::RequirementSpecItem;
84 use SL::DB::RequirementSpecOrder;
85 use SL::DB::RequirementSpecPredefinedText;
86 use SL::DB::RequirementSpecRisk;
87 use SL::DB::RequirementSpecStatus;
88 use SL::DB::RequirementSpecTextBlock;
89 use SL::DB::RequirementSpecType;
90 use SL::DB::RequirementSpecVersion;
91 use SL::DB::RequirementSpec;
92 use SL::DB::SchemaInfo;
93 use SL::DB::SepaExport;
94 use SL::DB::SepaExportItem;
95 use SL::DB::Shipto;
96 use SL::DB::Status;
97 use SL::DB::Tax;
98 use SL::DB::TaxKey;
99 use SL::DB::TaxZone;
100 use SL::DB::TodoUserConfig;
101 use SL::DB::TransferType;
102 use SL::DB::Translation;
103 use SL::DB::TriggerInformation;
104 use SL::DB::Unit;
105 use SL::DB::UnitsLanguage;
106 use SL::DB::VC;
107 use SL::DB::Vendor;
108 use SL::DB::Warehouse;
109
110 1;
111
112 __END__
113
114 =pod
115
116 =head1 NAME
117
118 SL::DB::Helper::ALL: Dependency-only package for all SL::DB::* modules
119
120 =head1 SYNOPSIS
121
122   use SL::DB::Helper::ALL;
123
124 =head1 DESCRIPTION
125
126 This module depends on all modules in SL/DB/*.pm for the convenience
127 of being able to write a simple \C<use SL::DB::Helper::ALL> and
128 having everything loaded. This is supposed to be used only in the
129 kivitendo console. Normal modules should C<use> only the modules they
130 actually need.
131
132 =head1 AUTHOR
133
134 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
135
136 =cut