Example #1
0
 partial void Deleteemployee(employee instance);
Example #2
0
 partial void Updateemployee(employee instance);
Example #3
0
		private void detach_employee(employee entity)
		{
			this.SendPropertyChanging();
			entity.jobs = null;
		}
Example #4
0
 partial void Insertemployee(employee instance);
Example #5
0
		private void attach_employee(employee entity)
		{
			this.SendPropertyChanging();
			entity.jobs = this;
		}