Java normaler Konstruktor
// normal constructor
public Contract(String id, String name, double income, int yearService, boolean isProfessional) {
super(id, name, income, yearService);
this.isProfessional = isProfessional;
}
Ares Azlan