// This fuction does not contain any business logic, it simply returns the
 // list of employees, we can put some logic here if needed
 public List <Employee> SearchLike(Employee employee)
 {
     return(employeeDb.SearchLike(employee));
 }