Ejemplo n.º 1
0
 public Curso(int id, int ht, int hp, string  nombre, string des, Nivel nivel, Dicta profeDicator , Boolean[,] diasDi)
 {
     this.Descripcion = des;
     this.HorasPract = hp;
     this.HorasTeori = ht;
     this.IdCurso = id;
     this.Nombre = nombre;
     this.Nivel = nivel;
     this.ProfeDicta = profeDicator;
     this.diasQueSedicta = diasDi;
 }
Ejemplo n.º 2
0
 public Curso(int id, int ht, int hp, string nombre, string des, Nivel nivel, Dicta profeDicator, Boolean[,] diasDi)
 {
     this.Descripcion    = des;
     this.HorasPract     = hp;
     this.HorasTeori     = ht;
     this.IdCurso        = id;
     this.Nombre         = nombre;
     this.Nivel          = nivel;
     this.ProfeDicta     = profeDicator;
     this.diasQueSedicta = diasDi;
 }
Ejemplo n.º 3
0
 public Matricula(Alumno alumno, Nivel nivel, Apoderado apoderado, int id, int descuento, int total, int deuda, string des, string fecha)
 {
     this.alumno      = alumno;
     this.nivel       = nivel;
     this.idMatricula = id;
     this.descuento   = descuento;
     this.precioTotal = total;
     this.deuda       = deuda;
     this.fecha       = fecha;
     this.descripcion = des;
     this.apoderado   = apoderado;
 }
Ejemplo n.º 4
0
 public Matricula(Alumno alumno, Nivel nivel, Apoderado apoderado, int id, int descuento, int total, int deuda, string des, string fecha)
 {
     this.alumno = alumno;
     this.nivel = nivel;
     this.idMatricula = id;
     this.descuento = descuento;
     this.precioTotal = total;
     this.deuda=deuda;
     this.fecha = fecha;
     this.descripcion=des;
     this.apoderado=apoderado;
 }