initial commit

This commit is contained in:
2019-05-26 14:06:35 -04:00
commit 23735a66de
55 changed files with 3311 additions and 0 deletions

19
src/db/q1.vala Normal file
View File

@@ -0,0 +1,19 @@
namespace Colegio {
namespace DB {
public class Q1 : Object {
public string alumno { get; set; default = ""; }
public string apoderado { get; set; default = ""; }
public string curso { get; set; default = ""; }
public string jefe { get; set; default = ""; }
public string asistente { get; set; default = ""; }
public Q1 (string alumno = "", string apoderado = "", string curso = "", string jefe = "", string asistente = "") {
this.alumno = alumno;
this.apoderado = apoderado;
this.curso = curso;
this.jefe = jefe;
this.asistente = asistente;
}
}
}
}

11
src/db/q2.vala Normal file
View File

@@ -0,0 +1,11 @@
namespace Colegio {
namespace DB {
public class Q2 : Object {
public string profesor { get; set; default = ""; }
public Q2 (string profesor = "") {
this.profesor = profesor;
}
}
}
}