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