sub contacts {
my ($self) = @_;
return Koha::Acquisition::Bookseller::Contacts->search( { booksellerid => $self->id } );
my $contacts_rs = $self->_result->aqcontacts;
return unless $contacts_rs;
return Koha::Acquisition::Bookseller::Contacts->_new_from_dbic($contacts_rs);
}
=head3 subscriptions
-