Exemple #1
0
        public DataTable DtgrMDProduto()
        {
            DataTable tabela = new DataTable();

            ProdutoDAL ProdDAL = new ProdutoDAL(this.Conexao);

            tabela = ProdDAL.DtgrProduto();

            return(tabela);
        }