コード例 #1
0
 public static bool InsertNewExamine(string Butype, string allcontent, ref string a_strErr)
 {
     if (SystemPro.InsertExamine(Butype, allcontent, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
コード例 #2
0
        public static List <SelectListItem> GetNewAppContent(string data, string table)
        {
            List <SelectListItem> ListItem = new List <SelectListItem>();
            DataTable             dtDesc   = SystemPro.GetAppContent(data, table);

            if (dtDesc == null)
            {
                return(ListItem);
            }
            SelectListItem SelListItem = new SelectListItem();

            SelListItem.Value = "";
            SelListItem.Text  = "请选择";
            ListItem.Add(SelListItem);
            for (int i = 0; i < dtDesc.Rows.Count; i++)
            {
                SelListItem       = new SelectListItem();
                SelListItem.Value = dtDesc.Rows[i]["SID"].ToString();
                SelListItem.Text  = dtDesc.Rows[i]["Text"].ToString();
                ListItem.Add(SelListItem);
            }
            return(ListItem);
        }
コード例 #3
0
 public static string getNewHaveExaminContent(string BuType)
 {
     return(SystemPro.getHaveExaminContent(BuType));
 }
コード例 #4
0
 public static UIDataTable getNewExamineGrid(int a_intPageSize, int a_intPageIndex, string where)
 {
     return(SystemPro.getExamineGrid(a_intPageSize, a_intPageIndex, where));
 }
コード例 #5
0
 public static UIDataTable getNewUserGrid(int a_intPageSize, int a_intPageIndex, string where, string where2)
 {
     return(SystemPro.getUserGrid(a_intPageSize, a_intPageIndex, where, where2));
 }
コード例 #6
0
 public static DataTable GetNewUser()
 {
     return(SystemPro.GetUser());
 }
コード例 #7
0
 public static DataTable getNewAppType(string Type)
 {
     return(SystemPro.getAppType(Type));
 }
コード例 #8
0
 public static DataTable GetNewConfigCont(string Type)
 {
     return(SystemPro.GetConfigCont(Type));
 }