public bool AddEmployee(Employee emp)
 {
     if (emp == null)
     {
         return(false);
     }
     return(repo.AddEmployee(emp));
 }