A C D E F G H I L M P R S T V

P

Patron - Class in librarytest
Patron – inherits from class Person and has a PatronID - Identification number (a value between 100000 and 999999) and the last date any item was checked out (a LibraryDate object
Patron(int, LibraryDate) - Constructor for class librarytest.Patron
Constructor with inputs
Patron(int, LibraryDate, String, String, Address, Gender) - Constructor for class librarytest.Patron
 
Patron() - Constructor for class librarytest.Patron
Default constructor
Person - Class in librarytest
Each person has First name (string), Last name (string),Address(an Address object), Gender (enumerated type)
Person() - Constructor for class librarytest.Person
Construct Person with no data
Person(String, String, Address, Gender) - Constructor for class librarytest.Person
Construct Person with input data

A C D E F G H I L M P R S T V