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

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