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