public Programacion(int idProgramacion, Semestre objSemestre, CursoPlanDeEstudios objCursoPlanDeEstudios, Profesor objProfesor)
 {
     this.idProgramacion         = idProgramacion;
     this.objSemestre            = objSemestre;
     this.objCursoPlanDeEstudios = objCursoPlanDeEstudios;
     this.objProfesor            = objProfesor;
 }
 public Programacion(int idProgramacion, Semestre objSemestre, CursoPlanDeEstudios objCursoPlanDeEstudios, Profesor objProfesor)
 {
     this.idProgramacion = idProgramacion;
        this.objSemestre = objSemestre;
        this.objCursoPlanDeEstudios=objCursoPlanDeEstudios;
        this.objProfesor=objProfesor;
 }
        public Matricula(int idMatricula, Alumno objAlumno, Semestre objSemestre, DateTime fecha)
        {
            this.idMatricula = idMatricula;
               this.objAlumno = objAlumno;
               this.objSemestre = objSemestre;

               this.fecha = fecha;
        }
        public Matricula(int idMatricula, Alumno objAlumno, Semestre objSemestre, DateTime fecha)
        {
            this.idMatricula = idMatricula;
            this.objAlumno   = objAlumno;
            this.objSemestre = objSemestre;

            this.fecha = fecha;
        }