binibiningtinamoran

Doctor

Oct 23rd, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public class Doctor extends Employee {
  2.  
  3.     public Doctor(String firstNam, String lastName, boolean isPaid, int hours) {
  4.         super(firstNam, lastName, isPaid, hours);
  5.     }
  6.  
  7.  
  8.  
  9. }
Add Comment
Please, Sign In to add comment