Bug 13726: Make Koha::Acq::Bookseller using Koha::Object
[koha.git] / 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;