Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
		private void detach_TestPlans(TestPlan entity)
		{
			this.SendPropertyChanging();
			entity.Project = null;
		}
		private void attach_TestPlans(TestPlan entity)
		{
			this.SendPropertyChanging();
			entity.Project = this;
		}
 partial void UpdateTestPlan(TestPlan instance);
 partial void DeleteTestPlan(TestPlan instance);
 partial void InsertTestPlan(TestPlan instance);