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