private void detach_EmpAwards(EmpAward entity)
		{
			this.SendPropertyChanging();
			entity.Employee = null;
		}
		private void attach_EmpAwards(EmpAward entity)
		{
			this.SendPropertyChanging();
			entity.Employee = this;
		}
 partial void UpdateEmpAward(EmpAward instance);
 partial void DeleteEmpAward(EmpAward instance);
 partial void InsertEmpAward(EmpAward instance);