use Class::Inspector;
use Koha::Database;
use Koha::Exceptions::Object;
=head1 NAME
sub update {
my ($self, $fields, $options) = @_;
Koha::Exceptions::Object::NotInstantiated->throw(
method => 'update',
class => $self
) unless ref $self;
my $no_triggers = $options->{no_triggers};
if (
sub empty {
my ($self) = @_;
unless (ref($self)) {
$self = $self->new;
method => 'empty',
}
$self->_resultset()->set_cache([]);
-