Ejemplo n.º 1
0
 private void txtNameCus_TextChanged(object sender, EventArgs e)
 {
     if (txtNameCus.Text.Trim() != string.Empty)
     {
         //Thuc hien tim kiem
         dgv_Receipt.DataSource = _receipt.SearchReceipt_ToNameCus(txtNameCus.Text);
     }
     if (txtNameCus.Text.Length == 0)
     {
         LoadReceipt_Appointment();
     }
 }