示例#1
0
        public void DeleteProduct(int productId)
        {
            ProductCommand pc = new ProductCommand(context);

            pc.Delete(productId);
        }
示例#2
0
        public void DeleteProduit(int produitID)
        {
            ProductCommand pc = new ProductCommand(_context);

            pc.Delete(produitID);
        }