Interface PersonnelMenu
- All Known Implementing Classes:
DoctorMenu, PatientMenu
public interface PersonnelMenu
Denotes what basic operations should every menu providing operation with person should implement.
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd()Provides option to add new personnel.voidall()Provides option to display all personnel associated with menu page.voiddelete()Provides option to delete existing personnel.voidedit()Provides option to edit existing personnel.voidfindById()Provides option to find personnel based on the identification number.
-
Method Details
-
add
void add()Provides option to add new personnel. -
edit
void edit()Provides option to edit existing personnel. -
delete
void delete()Provides option to delete existing personnel. -
findById
void findById()Provides option to find personnel based on the identification number. -
all
void all()Provides option to display all personnel associated with menu page.
-