public PropertyBE GetProperty() { if (myProperty == null) { myProperty = new PropertyBE(this); } return(myProperty); }
internal void MyXml(CLAS.JudgmentRow jr, System.Xml.XmlDocument xd) { //get writ xml PropertyBE pbe = this.myA.GetProperty(); foreach (CLAS.WritRow wr in jr.GetWritRows()) { MyXml(wr, xd); pbe.MyXml(wr, xd); } }
public void MyXml(atriumDB.EFileRow efr, System.Xml.XmlDocument xd) { WritBE wbe = this.myA.GetWrit(); CostBE cbe = this.myA.GetCost(); PropertyBE pbe = this.myA.GetProperty(); foreach (CLAS.JudgmentRow jr in myJudgmentDT) { MyXml(jr, xd); wbe.MyXml(jr, xd); cbe.MyXml(jr, xd); } }