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 Type
    Method
    Description
    void
    add()
    Provides option to add new personnel.
    void
    all()
    Provides option to display all personnel associated with menu page.
    void
    Provides option to delete existing personnel.
    void
    Provides option to edit existing personnel.
    void
    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.