コード例 #1
0
ファイル: Bussiness.cs プロジェクト: chaitu005/NSDL
        public DataSet getMenu_On_groupid(string strUser)
        {
            DataSet j = null;
            try
            {
                DBHelper db = new DBHelper();
                j = db.executeDataSet("USP_FINAPP_MENU_MASTER_SELECT_MENU_TO_DISPLAY '" + db.getSessionValue("UserId") + "'");
            }
            catch
            {

                j = null;
            }
            return j;
        }