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