partial void DeleteDog(Dog instance);
partial void UpdateDog(Dog instance);
private void detach_Dogs(Dog entity) { this.SendPropertyChanging(); entity.Client = null; }
partial void InsertDog(Dog instance);
private void attach_Dogs(Dog entity) { this.SendPropertyChanging(); entity.Client = this; }