public CustomerDeleteObject(CustomerWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
 public NameObject(CustomerWhereObject parent)
     : base("Name")
 {
     this.Parent = parent;
     this._operator = new CustomerOperatorObject(this.Parent);
 }
 public CustomerUpdateObject(CustomerWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
 public CustomerSelectObject(CustomerWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
 public CustomerOperatorObject(CustomerWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }
 public CustomerInsertObject(CustomerWhereObject whereObj)
 {
     this._whereObject = whereObj;
 }