Bug 17600: Standardize our EXPORT_OK
[srvgit] / Koha / Acquisition / Bookseller / Contacts.pm
1 package Koha::Acquisition::Bookseller::Contacts;
2
3 use Modern::Perl;
4
5
6 use base qw( Koha::Objects );
7
8 use Koha::Acquisition::Bookseller::Contact;
9
10 sub _type {
11     return 'Aqcontact';
12 }
13
14 sub object_class {
15     return 'Koha::Acquisition::Bookseller::Contact';
16 }
17
18 1;