示例#1
0
 public PaymentGatwayPage(Data.Model.Schedule item)
 {
     InitializeComponent();
     BindingContext = model = new PaymentGatwayPageViewModel()
     {
         ScheduleModel = item
     };
 }
示例#2
0
        public StripePaymentGatwayPage(double?Iznos = 123)
        {
            InitializeComponent();
            BindingContext = model = new PaymentGatwayPageViewModel()
            {
                Iznos = Iznos
            };

            NavigationPage.SetHasBackButton(this, false);
            NavigationPage.SetHasNavigationBar(this, false);
        }
示例#3
0
 public StripePaymentGatwayPage(int id)
 {
     InitializeComponent();
     BindingContext = model = new PaymentGatwayPageViewModel(id);
     redVoznjeID    = id;
 }