void btn_FEPorUbicacion_Click(object sender, RoutedEventArgs e)
 {
     try
     {
         UC_Ubicacion uc_Ubicacion = new UC_Ubicacion();
         _controlerUserControls.PutUserControlIntoWin(uc_Ubicacion);
         if (!uc_Ubicacion.PressAceptar)
         {
             return;
         }
         var           provinciaSelected = uc_Ubicacion.ProvinciaSelected;
         var           zonaSelected      = uc_Ubicacion.ZonaSelected;
         IListaEntidad listaEntidad      = new UC_ListaEdificio(LocalDataStore.FiltrarEdificiosPorUbicacion(provinciaSelected, zonaSelected));
         SubscriveEventHandlers(listaEntidad);
         SetUCActual(listaEntidad as UC_ListaEdificio);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "ERROR", MessageBoxButton.OK, MessageBoxImage.Error);
     }
 }