This commit is contained in:
chikyun.kim
2018-09-28 10:24:41 +09:00
parent 78f316bc3a
commit 128c089816
377 changed files with 23606 additions and 2107 deletions

View File

@@ -72,7 +72,19 @@ namespace FCOMMON
return dt;
}
public static Dictionary<string, string> getProjectList(string StateCode = "")
{
string where = "status = '{0}'";
if (StateCode != "") where = string.Format(where, StateCode);
else where = string.Empty;
return getTwoColumnList("Projects", "idx", "name", where, "status,name");
}
public static System.Data.DataTable getProjectData(string StateCode = "")
{
var list = getProjectList(StateCode);
return MakeDataTable(list);
}
public static Dictionary<string,string> getCodeList(string GroupCode="99")
{
string where = "Grp = '{0}'";