Exemple #1
0
 //查询单个(查ID)
 public static int Select(ref M_AuditFlow Obj, int ID, ref string ErrMsg)
 {
     I_AuditFlow I = (D_AuditFlow)SimpleFactory.CreateObject(DBType.AuditFlow);
     return I.Select(ref Obj, ID, ref ErrMsg);
 }
Exemple #2
0
 //插入多个
 public static int Insert(ref List<M_AuditFlow> Obj, ref string ErrMsg)
 {
     I_AuditFlow I = (D_AuditFlow)SimpleFactory.CreateObject(DBType.AuditFlow);
     return I.Insert(ref Obj, ref ErrMsg);
 }
Exemple #3
0
 //更新单个(查ID)
 public static int Update(M_AuditFlow Obj, ref string ErrMsg)
 {
     I_AuditFlow I = (D_AuditFlow)SimpleFactory.CreateObject(DBType.AuditFlow);
     return I.Update(Obj, ref ErrMsg);
 }
Exemple #4
0
 //删除单个(查ID)
 public static int Delete(int ID, ref string ErrMsg)
 {
     I_AuditFlow I = (D_AuditFlow)SimpleFactory.CreateObject(DBType.AuditFlow);
     return I.Delete(ID, ref ErrMsg);
 }