private async void vipButton_Clicked(object sender, EventArgs e)
        {
            await Navigation.PushModalAsync(new NavigationPage(new Chatter.View.VipPremium()));

            await DisplayAlert("Clicked!", "test", "Okay");

            PaymentIntegration integs = new PaymentIntegration();
            await integs.Sample();
        }
Beispiel #2
0
        public PaymentServiceModel FetchPolicyHolderDetails(PaymentServiceModel objPaymentModel)
        {
            PaymentIntegration objPaymentLogic = new PaymentIntegration();

            return(objPaymentLogic.FetchPolicyHolderDetails(objPaymentModel));
        }
Beispiel #3
0
        public PaymentServiceModel FetchPaymentProposals(PaymentServiceModel objPaymentModel)
        {
            PaymentIntegration objPaymentLogic = new PaymentIntegration();

            return(objPaymentLogic.FetchPaymentProposals(objPaymentModel));
        }