예제 #1
0
 private void bt_bill_Click(object sender, EventArgs e)
 {
     DataSet set = new DataSet();
     BillUpForm billform = new BillUpForm(Convert.ToDecimal(tb_sumFinal.Text));
     if(billform.ShowDialog() == DialogResult.OK)
     {
         //TODO
         manager.settle(billform.charged);
     }
 }
예제 #2
0
        private void bt_bill_Click(object sender, EventArgs e)
        {
            DataSet    set      = new DataSet();
            BillUpForm billform = new BillUpForm(Convert.ToDecimal(tb_sumFinal.Text));

            if (billform.ShowDialog() == DialogResult.OK)
            {
                //TODO
                manager.settle(billform.charged);
            }
        }