Esempio n. 1
0
        private void GetCDData(CDAccount account)
        {
            decimal interestRate;
            decimal balance;


            account.AccNumber = accNumberTB.Text;
            account.MatDate   = matDateTB.Text;

            if (decimal.TryParse(intRateTB.Text, out interestRate))
            {
                account.InterestRate = interestRate;

                if (decimal.TryParse(balanceTB.Text, out balance))
                {
                    account.Balance = balance;
                }

                else
                {
                    MessageBox.Show("Invalid Balance");
                }
            }

            else
            {
                MessageBox.Show("Invalid Interest Rate");
            }
        }
Esempio n. 2
0
        private void createObjBtn_Click(object sender, EventArgs e)
        {
            CDAccount myAccount = new CDAccount();

            GetCDData(myAccount);

            accNumberLbl.Text = myAccount.AccNumber;
            intRateLbl.Text   = myAccount.InterestRate.ToString("n2");
            balanceLbl.Text   = myAccount.Balance.ToString("c");
            matDateLbl.Text   = myAccount.MatDate;
        }