Пример #1
0
        public List <BankAccountsVO> getAccountsByClient(int _id)
        {
            List <BankAccountsVO> accountsVO = new List <BankAccountsVO>();
            DataTable             dataTable  = new DataTable();

            try
            {
                dataTable = _accountDAO.searchByIDClient(_id);
                foreach (DataRow dr in dataTable.Rows)
                {
                    BankAccountsVO _newBankAccVo = new BankAccountsVO();
                    _newBankAccVo.idAcc    = Int32.Parse(dr["idAcc"].ToString());
                    _newBankAccVo.idClient = Int32.Parse(dr["idClient"].ToString());
                    _newBankAccVo.type     = dr["Type"].ToString();
                    _newBankAccVo.amount   = Int32.Parse(dr["Amount of money"].ToString());
                    _newBankAccVo.date     = DateTime.Parse(dr["Date_Created"].ToString());
                    accountsVO.Add(_newBankAccVo);
                }
            }
            catch (NullReferenceException e)
            {
                Console.Write("Error:", e.ToString());
                Console.ReadLine();
            }

            return(accountsVO);
        }
Пример #2
0
 public void refreshGrid(int id)
 {
     this.dataGridView1.DataSource = _bankAccDAO.searchByIDClient(id);
 }