public static string GetProjectSubjectSetU8Code(string ProjectCode, string SubjectSetCode) { string text2; try { string text = ""; if (ProjectCode == "") { return(text); } EntityData projectSubjectSetByProject = ProjectDAO.GetProjectSubjectSetByProject(ProjectCode, SubjectSetCode); if (projectSubjectSetByProject.HasRecord()) { text = projectSubjectSetByProject.GetString("U8Code"); } projectSubjectSetByProject.Dispose(); text2 = text; } catch (Exception exception) { throw exception; } return(text2); }