partial void DeletePart(Part instance);
partial void UpdatePart(Part instance);
private void detach_Parts(Part entity) { this.SendPropertyChanging(); entity.Subject = null; }
partial void InsertPart(Part instance);
private void attach_Parts(Part entity) { this.SendPropertyChanging(); entity.Subject = this; }