/// <summary> /// Carga el DataGrid que contiene los Guest Premanifest de Outhouse /// </summary> /// <history> /// [jorcanche] 05/05/2016 created /// </history> private async void LoadGrid() { if (_outPremanifestViewSource == null) { return; } try { _outPremanifestViewSource.Source = await BRGuests.GetGuestPremanifestOuthouse(_bookInvit, _serverDate, Context.User.Location.loID); } catch (Exception ex) { UIHelper.ShowMessage(ex); } finally { StaEnd(); } }