Exemplo 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;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public LineaCursoDicta(int id, Dicta dic, Curso curso)
 {
     this.Curso = curso;
     this.Dicta = dic;
     this.Id    = id;
 }
Exemplo n.º 4
0
 public LineaCursoDicta(int id, Dicta dic, Curso curso)
 {
     this.Curso = curso;
     this.Dicta = dic;
     this.Id = id;
 }