Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            AccountData accountData = new AccountData();
            AccountInfo accountInfo = new AccountInfo();

            accountInfo       = accountData.GetAccountInfo("test1");
            txtFirstName.Text = accountInfo.FirstName;
            txtLastName.Text  = accountInfo.LastName;
            txtBalance.Text   = accountInfo.AccoutBalance.ToString();
        }