partial void DeleteTeacher(Teacher instance);
partial void UpdateTeacher(Teacher instance);
private void detach_Teachers(Teacher entity) { this.SendPropertyChanging(); entity.Person = null; }
partial void InsertTeacher(Teacher instance);
private void attach_Teachers(Teacher entity) { this.SendPropertyChanging(); entity.Person = this; }