private void detach_Trips(Trip entity)
		{
			this.SendPropertyChanging();
			entity.Route = null;
		}
		private void attach_Trips(Trip entity)
		{
			this.SendPropertyChanging();
			entity.Route = this;
		}
 partial void UpdateTrip(Trip instance);
 partial void DeleteTrip(Trip instance);
 partial void InsertTrip(Trip instance);