public bool Update() { JSLAObjectTable ST = new JSLAObjectTable(); ST.SetValueProperty(this); return(ST.Update()); }
public int Insert(JDataBase db = null) { JSLAObjectTable ST = new JSLAObjectTable(); ST.SetValueProperty(this); if (db == null) { Code = ST.Insert(); } else { Code = ST.Insert(db); } return(Code); }