52 lines
922 B
JavaScript
52 lines
922 B
JavaScript
class Tutor {
|
|
constructor(id, nombre, apellido, numeroDeTelefono, idUsuario) {
|
|
this.id = id;
|
|
this.nombre = nombre;
|
|
this.apellido = apellido;
|
|
this.numeroDeTelefono = numeroDeTelefono;
|
|
this.idUsuario = idUsuario;
|
|
}
|
|
|
|
getId() {
|
|
return this.id;
|
|
}
|
|
|
|
getNombre() {
|
|
return this.nombre;
|
|
}
|
|
|
|
getApellido() {
|
|
return this.apellido;
|
|
}
|
|
|
|
getNumeroDeTelefono() {
|
|
return this.numeroDeTelefono;
|
|
}
|
|
|
|
getIdUsuario() {
|
|
return this.idUsuario;
|
|
}
|
|
|
|
setId(id) {
|
|
this.id = id;
|
|
}
|
|
|
|
setNombre(nombre) {
|
|
this.nombre = nombre;
|
|
}
|
|
|
|
setApellido(apellido) {
|
|
this.apellido = apellido;
|
|
}
|
|
|
|
setNumeroDeTelefono(numeroDeTelefono) {
|
|
this.numeroDeTelefono = numeroDeTelefono;
|
|
}
|
|
|
|
setIdUsuario(idUsuario) {
|
|
this.idUsuario = idUsuario;
|
|
}
|
|
}
|
|
|
|
export default Tutor;
|