Ejemplo n.º 1
0
        private void BtnTim_Click(object sender, RoutedEventArgs e)
        {
            thBus = new ThuocBUS();
            string sKeyword = mathuoc.Text;

            if (sKeyword == null || sKeyword == string.Empty || sKeyword.Length == 0) // tìm tất cả
            {
                List <ThuocDTO> listThuoc = thBus.select();
                this.loadData_Vao_GridView(listThuoc);
            }
            else
            {
                List <ThuocDTO> listThuoc = thBus.selectByKeyWord(sKeyword);
                this.loadData_Vao_GridView(listThuoc);
            }
        }