Ejemplo n.º 1
0
 private void fillUpdateContacts(string token1, string token2)
 {
     if (!string.IsNullOrWhiteSpace(token1) && !string.IsNullOrWhiteSpace(token2))
     {
         existingClientTable = new DataTable();
         CustomerInformation customerInformation = dbController.getExistingClientContacts(existingClientTable, token1, token2);
         txtUpdateMobile.Text = customerInformation.Mobile_number;
     }
 }