partial void DeletePhoto(Photo instance);
partial void UpdatePhoto(Photo instance);
private void detach_Photos(Photo entity) { this.SendPropertyChanging(); entity.Account = null; }
partial void InsertPhoto(Photo instance);
private void attach_Photos(Photo entity) { this.SendPropertyChanging(); entity.Account = this; }