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