Exemple #1
0
 public static void RefreshCollectChannelTable()
 {
     IsLockCollectChannelTable = true;
     try
     {
         DB_Service.RefreshTable(ref MainCollectChannelTable, "select * from CollectChannelTable");
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         IsLockCollectChannelTable = false;
     }
 }
Exemple #2
0
 public static void RefreshPersonTable()
 {
     IsLockPersonTable = true;
     try
     {
         DB_Service.RefreshTable(ref MainPersonTable, "select * from PersonTable");
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         IsLockPersonTable = false;
     }
 }