private void ObtenerChequerasPorFiltro()
 {
     try
     {
         var chequeraPL = new ChequeraPL();
         if (cmbActivo.SelectedIndex <= 0)
         {
             Contexto.EstatusIdString = string.Empty;
         }
         var lista = chequeraPL.ObtenerPorFiltro(Contexto);
         gridDatos.ItemsSource = lista;
     }
     catch (Exception)
     {
         SkMessageBox.Show(Application.Current.Windows[ConstantesVista.WindowPrincipal], Properties.Resources.AdministrarChequera_ErrorGeneral, MessageBoxButton.OK, MessageImage.Error);
     }
 }