public class EmployeeMain {
  public static void printInfo(Employee e) {
    System.out.println(e.getHours());
    System.out.println(e.getSalary());
    System.out.println(e.getVacationDays());
    System.out.println(e.getVacationForm());
    System.out.println(e.takeDictation("Why is it going to be 80 degrees in April?"));
  }
  
  public static void main(String []args) {
    // Employee homer = new Employee();
    Secretary pam = new Secretary();
    // Marketer mark = new Marketer();

    // printInfo(homer);
    printInfo(pam);
    // printInfo(mark);
  }
}
