예제 #1
0
 public PersonNameObject(PersonWhereObject parent)
     : base("PersonName")
 {
     this.Parent = parent;
     this._operator = new PersonOperatorObject(this.Parent);
 }
예제 #2
0
 public PersonUpdateObject(PersonWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
예제 #3
0
 public PersonSelectObject(PersonWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
예제 #4
0
 public PersonOperatorObject(PersonWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
예제 #5
0
 public PersonInsertObject(PersonWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
예제 #6
0
 public PersonDeleteObject(PersonWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }