Exemplo n.º 1
0
        private void ButtonSubmit_Click(object sender, System.EventArgs e)
        {
            BillinAction action = new BillinAction(this.Context);

            action.NewOrder(this.Order, checkboxShipBilling.Checked);
            this.CurrentController.NextView = action.NextViewToDisplay;
        }
Exemplo n.º 2
0
        private void ButtonContinue_Click(object sender, System.EventArgs e)
        {
            BillinAction action = new BillinAction(this.Context);

            action.ConfirmOrder(this.WebLocalSingleton.CurrentOrder);
            this.CurrentController.NextView = action.NextViewToDisplay;
        }