initial commit
This commit is contained in:
19
src/db/q1.vala
Normal file
19
src/db/q1.vala
Normal 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
11
src/db/q2.vala
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user