partial void DeletePaper(Paper instance);
partial void UpdatePaper(Paper instance);
private void detach_Papers(Paper entity) { this.SendPropertyChanging(); entity.journal = null; }
partial void InsertPaper(Paper instance);
private void attach_Papers(Paper entity) { this.SendPropertyChanging(); entity.journal = this; }