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