private void Migrar_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                MessageBoxResult result =
                    SkMessageBox.Show(System.Windows.Application.Current.Windows[ConstantesVista.WindowPrincipal],
                                      Properties.Resources.MigracionInventarioSIAP_SeguroMigrar, MessageBoxButton.YesNo,
                                      MessageImage.Question);
                if (result == MessageBoxResult.Yes)
                {
                    var migracionBL = new MigracionBL();
                    MigracionCifrasControlInfo cifras = migracionBL.GuardarAnimalesSIAP(Contexto.Organizacion.OrganizacionID);
                    if (cifras != null)
                    {
                        if (cifrasControl != null)
                        {
                            cifrasControl.Add(cifras);
                        }
                        else
                        {
                            cifrasControl = new List <MigracionCifrasControlInfo> {
                                cifras
                            };
                        }

                        gridDatos.ItemsSource = null;
                        gridDatos.ItemsSource = cifrasControl;
                        HabilitarControlesMigracion(5);
                        SkMessageBox.Show(System.Windows.Application.Current.Windows[ConstantesVista.WindowPrincipal],
                                          Properties.Resources.MigracionInventarioSIAP_OKMigracion,
                                          MessageBoxButton.OK, MessageImage.Correct);
                    }
                }
            }
            catch (Exception ex)
            {
                SkMessageBox.Show(
                    System.Windows.Application.Current.Windows[ConstantesVista.WindowPrincipal],
                    Properties.Resources.MigracionInventarioSIAP_ErrorMigracion, MessageBoxButton.OK, MessageImage.Error);
                Logger.Error(ex);
            }
        }