partial void DeleteStudent(Student instance);
 partial void UpdateStudent(Student instance);
		private void detach_Students(Student entity)
		{
			this.SendPropertyChanging();
			entity.Group = null;
		}
 partial void InsertStudent(Student instance);
		private void attach_Students(Student entity)
		{
			this.SendPropertyChanging();
			entity.Group = this;
		}