// This fuction does not contain any business logic, it simply returns the
 // list of employees, we can put some logic here if needed
 public bool Delete(Int64 nationalCode)
 {
     return(employeeDb.Delete(nationalCode));
 }