// Allison Obourn
// CS 142, Spring 2024
// Lecture 9 

// This program creates a generic employee, a secratary and a lawyer. It
// outputs the salary of the employee and secretary, has the lawyer sue
// someone and then prints out the number of vacation days the lawyer gets.
public class EmployeeMain {
   public static void main(String[] args) {
      Employee ed = new Employee();
      Secretary sam = new Secretary();
      System.out.println("Ed salary: " + ed.getSalary());
      System.out.println("Sam salary: " + sam.getSalary());
      
      Lawyer laura = new Lawyer();
      laura.sue();
      System.out.println("Laura vacation days: " + laura.getVacationDays());
   }
}