コード例 #1
0
        private void DeleteBtn_Click(object sender, RoutedEventArgs e)
        {
            Product selectedProduct;

            selectedProduct = (Product)listBoxProducts.SelectedItem;
            if (selectedProduct != null)
            {
                _productControl.DeleteProduct(selectedProduct.ProductId);
                UpdateListBoxProducts();
            }
        }
コード例 #2
0
ファイル: ProductLineService.cs プロジェクト: ogrish55/Server
 public void DeleteProduct(int productId)
 {
     productControl.DeleteProduct(productId);
 }