20 lines
666 B
Vala
20 lines
666 B
Vala
namespace Colegio {
|
|
namespace DB {
|
|
public class Profesor : Object {
|
|
public string rut_profesor { get; set; default = ""; }
|
|
public string nombres { get; set; default = ""; }
|
|
public string apellidos { get; set; default = ""; }
|
|
public string direcion { get; set; default = ""; }
|
|
public Ciudad ciudad { get; set; default = new Ciudad(); }
|
|
|
|
public Profesor (string rut_profesor = "", string nombres = "", string apellidos = "", string direcion = "", Ciudad ciudad = new Ciudad()) {
|
|
this.rut_profesor = rut_profesor;
|
|
this.nombres = nombres;
|
|
this.apellidos = apellidos;
|
|
this.direcion = direcion;
|
|
this.ciudad = ciudad;
|
|
}
|
|
}
|
|
}
|
|
}
|