public String Eliminar(String identificacion)
 {
     if (repositoryEmpleado.Buscar(identificacion) == null)
     {
         return("Identificacion no encontrada");
     }
     else
     {
         repositoryEmpleado.Eliminar(identificacion);
         return($"La persona con identificacion {identificacion} fue eliminada");
     }
 }