partial void DeleteAnswer(Answer instance);
 partial void UpdateAnswer(Answer instance);
 partial void InsertAnswer(Answer instance);
		private void detach_Answers(Answer entity)
		{
			this.SendPropertyChanging();
			entity.Question = null;
		}
		private void attach_Answers(Answer entity)
		{
			this.SendPropertyChanging();
			entity.Question = this;
		}
		private void detach_Answers(Answer entity)
		{
			this.SendPropertyChanging();
			entity.Survey_Request_Sent = null;
		}