Exemplo n.º 1
0
        public Alumno(string name, string lname, int doc, int phone, string direcc, int id, Curso curse)
        {
            this.nombre   = name;
            this.apellido = lname;
            this.dni      = doc;
            this.tel      = phone;
            this.direc    = direcc;
            this.id       = id;

            this.curso = curse;
        }
Exemplo n.º 2
0
 public Asignatura(string asig, List <string> asigs, List <Profesor> profes, Dictionary <Alumno, Calificacion> califs, Curso curs)
 {
     this.asign          = asig;
     this.correlativas   = asigs;
     this.profesores     = profes;
     this.calificaciones = califs;
     this.curso          = curs;
 }