partial void DeleteVehicle(Vehicle instance);
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Manufacturer = null;
		}
 partial void UpdateVehicle(Vehicle instance);
 partial void InsertVehicle(Vehicle instance);
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.VehicleCategory = null;
		}
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Model = null;
		}
		private void attach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Model = this;
		}