コード例 #1
0
 public override bool EsCumlidoPor(ItemCv item_cv)
 {
     if (item_cv.GetType() != typeof(CvExperienciaLaboral))
     {
         return(false);
     }
     else
     {
         return(((CvExperienciaLaboral)item_cv).AmbitoLaboral.Equals(this.ambitoLaboral.Id));
     }
 }
コード例 #2
0
 public override bool EsCumlidoPor(ItemCv item_cv)
 {
     if (item_cv.GetType() != typeof(CvIdiomas))
     {
         return(false);
     }
     else
     {
         return(this.idiomas_requeridos.Any(i => i.Equals(((CvIdiomas)item_cv).Idioma)));
     }
 }
コード例 #3
0
 public override bool EsCumlidoPor(ItemCv item_cv)
 {
     if (item_cv.GetType() != typeof(AntecedentePenal))
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
コード例 #4
0
 public override bool EsCumlidoPor(ItemCv item_cv)
 {
     if (item_cv.GetType() != typeof(CvEstudios))
     {
         return(false);
     }
     else
     {
         return(((CvEstudios)item_cv).Nivel.Equals(this.nivel_de_estudio.Id));
     }
 }