/// <summary>
 /// Update an existed employee information
 /// </summary>
 /// <param name="emp"></param>
 /// <returns>The ID of the employee, whose infomation had been modified.</returns>
 public int UpdateEmployeeInfo(Employee emp)
 {
     return(Convert.ToInt32(emDAL.CommnadForUpdateEmployeeInfo(emp)));
 }