示例#1
0
        public CurriculumVitaeNull()
        {
            this._datosPersonalesNull = new CvDatosPersonales();
            var domicilio_nulo = new CvDomicilio();

            this._datosPersonalesNull.DomicilioPersonal = domicilio_nulo;
            this._datosPersonalesNull.DomicilioLegal    = domicilio_nulo;
        }
示例#2
0
 public CurriculumVitae(CvDatosPersonales datosPersonales)
 {
     this._datosPersonales              = datosPersonales;
     this._cvEstudios                   = new List <CvEstudios>();
     this._cvEventoAcademicos           = new List <CvEventoAcademico>();
     this._cvExperienciaLaboral         = new List <CvExperienciaLaboral>();
     this._cvIdiomas                    = new List <CvIdiomas>();
     this._cvInstitucionesAcademicas    = new List <CvInstitucionesAcademicas>();
     this._cvMatriculas                 = new List <CvMatricula>();
     this._cvPublicaciones              = new List <CvPublicaciones>();
     this._cvDocencias                  = new List <CvDocencia>();
     this._cvCompetenciasInformaticas   = new List <CvCompetenciasInformaticas>();
     this._cvCertificadosDeCapacitacion = new List <CvCertificadoDeCapacitacion>();
     this._cvCapacidadesPersonales      = new List <CvCapacidadPersonal>();
 }