예제 #1
0
 public Materia(int id, string nombre, Modalidad modalidad, Ciclo ciclo)
 {
     this._id        = id;
     this._nombre    = nombre;
     this._modalidad = modalidad;
     this._ciclo     = ciclo;
 }
예제 #2
0
 public Alumno(int id, string nombre, string apellido, int documento, string telefono, string mail, string direccion, List <Area> areas, Modalidad modalidad, string lugar_de_trabajo, DateTime fecha_de_nacimiento, string estado_de_cursada, Ciclo ciclo_en_curso, DateTime fecha_de_ingreso, Organismo organismo)
 {
     this._id                  = id;
     this._nombre              = nombre;
     this._apellido            = apellido;
     this._documento           = documento;
     this._telefono            = telefono;
     this._mail                = mail;
     this._direccion           = direccion;
     this._areas               = areas;
     this._modalidad           = modalidad;
     this._lugar_de_trabajo    = lugar_de_trabajo;
     this._fecha_de_nacimiento = fecha_de_nacimiento;
     //this._estado_cursada = estado_de_cursada;
     this._ciclo_cursado    = ciclo_en_curso;
     this._fecha_de_ingreso = fecha_de_ingreso;
     this._organismo        = organismo;
 }
예제 #3
0
 public Materia(int id, string nombre, Modalidad modalidad)
 {
     this._id        = id;
     this._nombre    = nombre;
     this._modalidad = modalidad;
 }