Beispiel #1
0
 partial void DeletePhone(Phone instance);
Beispiel #2
0
 partial void UpdatePhone(Phone instance);
Beispiel #3
0
		private void detach_Phone(Phone entity)
		{
			this.SendPropertyChanging();
			entity.Department = null;
		}
Beispiel #4
0
 partial void InsertPhone(Phone instance);
Beispiel #5
0
		private void attach_Phone(Phone entity)
		{
			this.SendPropertyChanging();
			entity.Department = this;
		}