private static string GetSupplierSubjectSetU8Code(string SupplierCode, string ProjectCode, string SubjectSetCode) { string text2; try { string text = ""; if (SupplierCode == "") { return(text); } EntityData data = ProjectDAO.GetSupplierSubjectSetBySupplier(SupplierCode, ProjectCode, SubjectSetCode); if (data.HasRecord()) { text = data.GetString("U8Code"); } data.Dispose(); text2 = text; } catch (Exception exception) { throw exception; } return(text2); }