Exemplo n.º 1
0
        public DataTable listaClientes()
        {
            //int retorno = -1;
            DataTable retorno;

            try
            {
                DAL.clientesApp dal = new DAL.clientesApp();

                retorno = dal.listaClientes();
                return(retorno);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.InnerException.ToString());
            }
        }