Пример #1
0
 public Estudiante(int ident, String documen, String nomb, String apell, DateTime fecha, InstitucionEducativa ins, NivelEducativo niv, string tel)
 {
     id                   = ident;
     apellido             = apell;
     nombre               = nomb;
     telefono             = tel;
     dni                  = documen;
     activo               = true;
     FechaNacimiento      = fecha;
     InstitucionEducativa = ins;
     NivelEducativo       = niv;
 }
Пример #2
0
 //constructor AGREGAR LOS OBJETOS
 public Estudiante() : base()
 {
     id                   = 0;
     apellido             = "";
     nombre               = "";
     telefono             = "";
     dni                  = "";
     activo               = true;
     FechaNacimiento      = DateTime.Today;
     InstitucionEducativa = null;
     NivelEducativo       = null;
 }