X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FManager%2FMebilMapping.pm;fp=SL%2FDB%2FManager%2FMebilMapping.pm;h=9f37457a7c0bfb4a3318d522549f5207cc3ca495;hp=6ccaa08218bdcd2e6841235f42f71c3dad875ea4;hb=5349a1ed016ae603b39d73747eccc6792707db1c;hpb=2a0cbd885790174fa0f212e6661b30362650a42c diff --git a/SL/DB/Manager/MebilMapping.pm b/SL/DB/Manager/MebilMapping.pm index 6ccaa0821..9f37457a7 100644 --- a/SL/DB/Manager/MebilMapping.pm +++ b/SL/DB/Manager/MebilMapping.pm @@ -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'); +# }