Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Empleado empleado1 =new Empleado("Pepe",Categoria.EMPLEADO, LocalDate.of(2011,3,21), LocalDate.of(2013, 4,22));
  2.  
  3. Empleado(String nombre, Categoria categoria, LocalDate fechaAlta, LocalDate fechaBaja) {
  4. this.nombre = nombre;
  5. FechaAlta = fechaAlta;
  6. FechaBaja = fechaBaja;
  7. clave=asignarClave(categoria);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement