Koha::List::Patron - Managment of lists of patrons
    my @lists = GetPatronLists( $params );
    Returns an array of lists created by the the given user
    or the logged in user if none is passed in.
    DelPatronList( { patron_list_id => $list_id [, owner => $owner ] } );
    AddPatronList( { name => $name [, owner => $owner ] } );
    ModPatronList( { patron_list_id => $id, name => $name [, owner => $owner ] } );
    AddPatronsToList({ list => $list, cardnumbers => \@cardnumbers });
    DelPatronsFromList({ list => $list, patron_list_patrons => \@patron_list_patron_ids });
Kyle M Hall, <kyle@bywatersolutions.com>