Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
		private void attach_Generals(General entity)
		{
			this.SendPropertyChanging();
			entity.Project = this;
		}
		private void detach_Generals(General entity)
		{
			this.SendPropertyChanging();
			entity.Project = null;
		}
 partial void DeleteGeneral(General instance);
 partial void UpdateGeneral(General instance);
 partial void InsertGeneral(General instance);
		private void detach_Generals2(General entity)
		{
			this.SendPropertyChanging();
			entity.TpUser2 = null;
		}
		private void attach_Generals2(General entity)
		{
			this.SendPropertyChanging();
			entity.TpUser2 = this;
		}