/// <summary> /// 修改 /// </summary> /// <param name="p_BE">要修改的实体</param> /// <param name="sqlTrans">事务类</param> public void RUpdate(BaseEntity p_BE, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); CSBGItem entity = (CSBGItem)p_BE; CSBGItemCtl control = new CSBGItemCtl(sqlTrans); control.Update(entity); string sql = "DELETE Data_CSBGItemDts WHERE MainID=" + SysString.ToDBString(entity.ID); sqlTrans.ExecuteNonQuery(sql); for (int i = 0; i < p_BE2.Length; i++) { CSBGItemDtsRule rule = new CSBGItemDtsRule(); CSBGItemDts entityDts = (CSBGItemDts)p_BE2[i]; entityDts.MainID = entity.ID; entityDts.Seq = i + 1; rule.RAdd(entityDts, sqlTrans); } } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 新增(传入事务处理) /// </summary> /// <param name="p_BE">要新增的实体</param> /// <param name="sqlTrans">事务类</param> public void RAdd(BaseEntity p_BE, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); CSBGItem entity = (CSBGItem)p_BE; string sql = "SELECT * FROM Data_CSBGItem WHERE Code=" + SysString.ToDBString(entity.Code); DataTable dt = sqlTrans.Fill(sql); if (dt.Rows.Count > 0) { throw new BaseException("测试项目编号已存在,请检查后重新输入!"); } sql = "SELECT * FROM Data_CSBGItem WHERE Name=" + SysString.ToDBString(entity.Name); dt = sqlTrans.Fill(sql); if (dt.Rows.Count > 0) { throw new BaseException("测试项目名称已存在,请检查后重新输入!"); } CSBGItemCtl control = new CSBGItemCtl(sqlTrans); entity.ID = (int)EntityIDTable.GetID((long)SysEntity.Data_CSBGItem, sqlTrans); control.AddNew(entity); for (int i = 0; i < p_BE2.Length; i++) { CSBGItemDtsRule rule = new CSBGItemDtsRule(); CSBGItemDts entityDts = (CSBGItemDts)p_BE2[i]; entityDts.MainID = entity.ID; entityDts.Seq = i + 1; rule.RAdd(entityDts, sqlTrans); } } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }