public WithdrawConfirmPopup(WithdrawWindow caller, string amount, Customer customer)
        {
            InitializeComponent();
            this.amount   = amount;
            this.customer = customer;
            this.caller   = caller;

            outputLabel.Content = amount;
        }
        private void withdrawButtonPush(object sender, MouseButtonEventArgs e)
        {
            WithdrawWindow withdraw = new WithdrawWindow(this, customer);

            withdraw.Show();
        }
Esempio n. 3
0
 public WithdrawAmmountPopup(WithdrawWindow caller, Customer customer)
 {
     InitializeComponent();
     this.caller   = caller;
     this.customer = customer;
 }