Exemplo n.º 1
0
 partial void DeleteVehicle(Vehicle instance);
Exemplo n.º 2
0
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Manufacturer = null;
		}
Exemplo n.º 3
0
 partial void UpdateVehicle(Vehicle instance);
Exemplo n.º 4
0
 partial void InsertVehicle(Vehicle instance);
Exemplo n.º 5
0
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.VehicleCategory = null;
		}
Exemplo n.º 6
0
		private void detach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Model = null;
		}
Exemplo n.º 7
0
		private void attach_Vehicles(Vehicle entity)
		{
			this.SendPropertyChanging();
			entity.Model = this;
		}