import java.time.LocalDate; public class Employee { Integer id; String name; String city; double salary; LocalDate birth; public Employee( Integer id, String name, String city, double salary, LocalDate birth) { this.id = id; this.name = name; this.city = city; this.salary = salary; this.birth = birth; } public Employee( String name, String city, double salary, LocalDate birth) { this.name = name; this.city = city; this.salary = salary; this.birth = birth; } }