partial void DeleteExercise(Exercise instance);
partial void UpdateExercise(Exercise instance);
private void detach_Exercises(Exercise entity) { this.SendPropertyChanging(); entity.Lesson = null; }
partial void InsertExercise(Exercise instance);
private void attach_Exercises(Exercise entity) { this.SendPropertyChanging(); entity.Lesson = this; }