public Person(PERSON row)
     : this()
 {
     this.Id = row.Id;
     this.Name = row.Name;
     this.Document = row.Document;
     this.Email = row.Email;
 }
 public Person(PERSON row)
     : this()
 {
     Id = row.Id;
     Name = row.Name;
     Document = row.Document;
     Email = row.Email;
 }
 partial void DeletePERSON(PERSON instance);
 partial void UpdatePERSON(PERSON instance);
 partial void InsertPERSON(PERSON instance);