Example #1
0
 public void Read(string type, string val)
 {
     new Thread(() =>
     {
         dAOSql.Read(type, val);
         SetUI.SetTable();
         listPerson = null;
     }).Start();
 }
Example #2
0
 public void Read()
 {
     new Thread(() =>
     {
         dAOSql.Read();
         SetUI.SetTable();
         listPerson = null;
     }).Start();
 }