コード例 #1
0
ファイル: B_Process.cs プロジェクト: linrb/CMS-Source-code
 public bool UpdateByID(M_Process model)
 {
     return(Sql.UpdateByIDs(strTableName, PK, model.Id.ToString(), BLLCommon.GetFieldAndPara(model), model.GetParameters(model)));
 }
コード例 #2
0
ファイル: B_Process.cs プロジェクト: linrb/CMS-Source-code
 public int insert(M_Process model)
 {
     return(Sql.insert(strTableName, model.GetParameters(model), BLLCommon.GetParas(model), BLLCommon.GetFields(model)));
 }