public PersonNameObject(PersonWhereObject parent) : base("PersonName") { this.Parent = parent; this._operator = new PersonOperatorObject(this.Parent); }
public PersonUpdateObject(PersonWhereObject whereObj) { this._whereObject = whereObj; }
public PersonSelectObject(PersonWhereObject whereObj) { this._whereObject = whereObj; }
public PersonOperatorObject(PersonWhereObject whereObj) { this._whereObject = whereObj; }
public PersonInsertObject(PersonWhereObject whereObj) { this._whereObject = whereObj; }
public PersonDeleteObject(PersonWhereObject whereObj) { this._whereObject = whereObj; }