Exemple #1
0
 private async void _Roomy10Wheel_ClickedEvent(Object sender, EventArgs e)
 {
     try
     {
         ProvincesManagement.ProvinceSelectionPage _ProvinceSelectionPage = new ProvincesManagement.ProvinceSelectionPage();
         _ProvinceSelectionPage.ViewInformation(4, 3, LoadCapacitorLoadsListType.NotSedimented);
         await Navigation.PushAsync(_ProvinceSelectionPage);
     }
     catch (Exception ex)
     { await DisplayAlert("ATISMobile-Error", ex.Message, "OK"); }
 }
Exemple #2
0
 private async void ViewProvinces(LoadCapacitorLoadsListType YourLoadCapacitorLoadsListType)
 {
     try
     {
         ProvincesManagement.ProvinceSelectionPage _ProvinceSelectionPage = new ProvincesManagement.ProvinceSelectionPage();
         _ProvinceSelectionPage.ViewInformation(_AHId, _AHSGId, YourLoadCapacitorLoadsListType);
         await Navigation.PushAsync(_ProvinceSelectionPage);
     }
     catch (Exception ex)
     { await DisplayAlert("ATISMobile-Error", ex.Message, "OK"); }
 }