@SuppressWarnings("unchecked")
public List<Utente> loadDataFromXsl(String pathToFile) {
List<Utente> utenti = null;
try {
utenti = new FastList<Utente>();
XlsImporter importer = XlsImporter.getInstance(pathConfig);
utenti = importer.doImport(pathToFile);
} catch (Exception e) {
e.printStackTrace();
return utenti;
}
return utenti;