//LOAD
 private void FichaIdentificacionLoad(FichaIdentificacion Window = null)
 {
     try
     {
         if (TabFichaIdentificacion)
         {
             IndexMenu = 1;
             SituacionJuridicaEnabled = EstudioTrasladoEnabled = true;
             //LlenarCombosFichaIdentificacion();
             //if (SelectIngreso != null)
             setValidacionesFichaIdentificacion();
         }
     }
     catch (Exception ex)
     {
         StaticSourcesViewModel.ShowMessageError("Algo pasó...", "Ocurrió un error al cargar ficha identificación", ex);
     }
 }
 //UNLOAD
 private void FichaIdentificacionUnload(FichaIdentificacion Window = null)
 {
     try
     {
         if (SelectIngreso != null)
         {
             if (!base.HasErrors)
             {
                 //GuardarUltimosEmpleos();
                 GuardarFichaIdentificacion();
             }
             else
             {
                 TabFichaIdentificacion = true;
             }
         }
     }
     catch (Exception ex)
     {
         StaticSourcesViewModel.ShowMessageError("Algo pasó...", "Ocurrió un error al salir de ficha identificación", ex);
     }
 }