partial void DeleteTopic(Topic instance);
 partial void UpdateTopic(Topic instance);
		private void detach_Topics(Topic entity)
		{
			this.SendPropertyChanging();
			entity.Person = null;
		}
 partial void InsertTopic(Topic instance);
		private void attach_Topics(Topic entity)
		{
			this.SendPropertyChanging();
			entity.Person = this;
		}