public Usuario(int id, TipoDeUsuario tipo, String nombre, String apellido, String dni, Fecha cumpleaños, String telefono, Ciudad ciudad, String direccion, String cp, String email, String contraseña, bool estado) { this.id = id; this.tipo = tipo; this.nombre = nombre; this.apellido = apellido; this.dni = dni; this.cumpleaños = cumpleaños; this.telefono = telefono; this.ciudad = ciudad; this.direccion = direccion; this.cp = cp; this.email = email; this.contraseña = contraseña; this.estado = estado; }
public void setTipo(TipoDeUsuario tipo) { this.tipo = tipo; }