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; } } } }