Beispiel #1
0
        public void InserirItemInventario()
        {
            var dal = new InventarioDAL();
            var bll = new InventarioBLL(dal);

            bll.InclusaoInventario(new Inventario()
            {
                ProdutoId            = 1,
                QuantidadeDisponivel = 50,
                QuantidadeMinima     = 10
            });
        }