epic-s6g
[kivitendo-erp.git] / SL / DB / Manager / MebilMapping.pm
index 6ccaa08..9f37457 100644 (file)
@@ -12,3 +12,31 @@ sub object_class { 'SL::DB::MebilMapping' }
 __PACKAGE__->make_manager_methods;
 
 1;
+
+# The call above creates the methods shown below.  (The actual 
+# method bodies vary slightly, but this is the gist of it...)
+#
+# sub get_products
+# {
+#   shift->get_objects(@_, object_class => 'Product');
+# }
+#
+# sub get_products_iterator
+# {
+#   shift->get_objects_iterator(@_, object_class => 'Product');
+# }
+#
+# sub get_products_count
+# {
+#   shift->get_objects_count(@_, object_class => 'Product');
+# }
+#
+# sub update_products
+# {
+#   shift->update_objects(@_, object_class => 'Product');
+# }
+#
+# sub delete_products
+# {
+#   shift->delete_objects(@_, object_class => 'Product');
+# }