private async void SlFOCPayment_Tapped(object sender, EventArgs e) { try { objresult.ActualEndTime = DateTime.Now; var FOCPage = new FOCConfirmationPage(objresult, "OverstayVehicleInformation"); await Navigation.PushAsync(FOCPage); } catch (Exception ex) { dal_Exceptionlog.InsertException(Convert.ToString(App.Current.Properties["apitoken"]), "Operator App", ex.Message, "OverstayVehicleInformation.xaml.cs", "", "SlFOCPayment_Tapped"); } }
private async void SlFOCPayment_Tapped(object sender, EventArgs e) { try { objresult.ActualEndTime = DateTime.Now; objresult.DueAmount = string.IsNullOrEmpty(labelDueAmount.Text) ? 0 : Convert.ToDecimal(labelDueAmount.Text); var fOCConfirmationPage = new FOCConfirmationPage(objresult, "ViolationVehicleInformation"); await Navigation.PushAsync(fOCConfirmationPage); } catch (Exception ex) { dal_Exceptionlog.InsertException(Convert.ToString(App.Current.Properties["apitoken"]), "Operator App", ex.Message, "ViolationVehicleInformation.xaml.cs", "", "SlFOCPayment_Tapped"); } }