=head2 Class Methods
=cut
=head3 new
It should not be used directly, prefer to access fields you need instead of
retrieving all these fields in one go.
sub pending_checkouts {
Return true if the patron has a category with a type Child (C)
sub is_child {
my( $self ) = @_;
return $self->category->category_type eq 'C' ? 1 : 0;
-