コード例 #1
0
ファイル: ProdutoBLL.cs プロジェクト: ademir-santos/KMK-CVFF
        public DataTable DtgrMDProduto()
        {
            DataTable tabela = new DataTable();

            ProdutoDAL ProdDAL = new ProdutoDAL(this.Conexao);

            tabela = ProdDAL.DtgrProduto();

            return(tabela);
        }