public Account(ACCOUNT row)
     : this()
 {
     Id = row.Id;
     Number = row.Number;
     OwnerId = row.OwnerId;
     Agency = row.Agency;
 }
 public Account(ACCOUNT row)
     : this()
 {
     this.Id = row.Id;
     this.Number = row.Number;
     this.OwnerId = row.OwnerId;
     this.Agency = row.Agency;
 }
		private void detach_ACCOUNTs(ACCOUNT entity)
		{
			this.SendPropertyChanging();
			entity.PERSON = null;
		}
		private void attach_ACCOUNTs(ACCOUNT entity)
		{
			this.SendPropertyChanging();
			entity.PERSON = this;
		}
 partial void DeleteACCOUNT(ACCOUNT instance);
 partial void UpdateACCOUNT(ACCOUNT instance);
 partial void InsertACCOUNT(ACCOUNT instance);