public static string GetNNFromID(int nID) { if (!PLGBAcct.bRead) { PLGBAcct.ReadTable(); } return(PLGBAcct.m_MapIDtoNN.ContainsKey(nID) ? PLGBAcct.m_MapIDtoNN[nID].ToString() : ""); }
public static int GetIDFromNN(string Key) { if (!PLGBAcct.bRead) { PLGBAcct.ReadTable(); } Key = Key.ToUpper(); return(PLGBAcct.m_MapNNtoID.ContainsKey(Key) ? Convert.ToInt32(PLGBAcct.m_MapNNtoID[Key]) : 0); }
public static string GetQBIDFromPLID(int nID) { string str; if (!nID.Equals(0)) { if (!PLGBAcct.bRead) { PLGBAcct.ReadTable(); } str = PLGBAcct.m_MapPLIDtoQBID == null ? "" : (PLGBAcct.m_MapPLIDtoQBID.ContainsKey(nID) ? Convert.ToString(PLGBAcct.m_MapPLIDtoQBID[nID]) : ""); } else { str = ""; } return(str); }
public static int GetPLIDFromQBID(string sQBID) { int num1; if (!sQBID.Equals("")) { if (!PLGBAcct.bRead) { PLGBAcct.ReadTable(); } if (PLGBAcct.m_MapPLIDtoQBID == null) { num1 = 0; } else if (PLGBAcct.m_MapPLIDtoQBID.ContainsValue(sQBID)) { int num2 = 0; Dictionary <int, string> .Enumerator enumerator = PLGBAcct.m_MapPLIDtoQBID.GetEnumerator(); while (enumerator.MoveNext()) { Dictionary <int, string> mapPliDtoQbid = PLGBAcct.m_MapPLIDtoQBID; KeyValuePair <int, string> current = enumerator.Current; if (mapPliDtoQbid[current.Key].ToUpper().CompareTo(sQBID.ToUpper()) == 0) { current = enumerator.Current; num2 = current.Key; } } num1 = num2; } else { num1 = 0; } } else { num1 = 0; } return(num1); }