Exemplo n.º 1
0
        private void searchBtn_Click(object sender, EventArgs e)
        {
            string text                = this.dateTimePicker2.Value.ToShortDateString();
            AccountingRepository ar    = new AccountingRepository();
            List <AccountingR>   iList = ar.searchTransiction(text);

            this.dataGrid1.DataSource = iList;
        }