partial void DeleteRecall(Recall instance);
partial void UpdateRecall(Recall instance);
partial void InsertRecall(Recall instance);
private void detach_Recall(Recall entity) { this.SendPropertyChanging(); entity.Doctor = null; }
private void attach_Recall(Recall entity) { this.SendPropertyChanging(); entity.Doctor = this; }
public void SaveRecall(Recall currentRecall) { _repository.AddRecall(currentRecall); }