コード例 #1
0
 //El método llamará a la Capa de Acceso a Datos para que procese el fichero".
 public bool CargaFichero(string filePath)
 {
     try
     {
         _contactoDal.CargaFichero(filePath);
         return(true);
     }
     catch (IOException e)
     {
         throw e;
     }
     catch (IndexOutOfRangeException e)
     {
         throw e;
     }
 }