Advertisement
Paarzivall

Kierownik

Mar 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. package klasa_abstrakcyjna_1;
  2.  
  3. public class Kierownik extends Pracownik {
  4.    
  5.     public Kierownik(String Imie, String Nazwisko, Double Pensja) {
  6.         super(Imie, Nazwisko, Pensja);
  7.         setStanowisko("Kierownik");
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement