partial void DeleteRoute(Route instance);
 partial void UpdateRoute(Route instance);
		private void detach_Routes(Route entity)
		{
			this.SendPropertyChanging();
			entity.Agency = null;
		}
 partial void InsertRoute(Route instance);
		private void attach_Routes(Route entity)
		{
			this.SendPropertyChanging();
			entity.Agency = this;
		}