コード例 #1
0
ファイル: Item.cs プロジェクト: yb82/inventorymanager
        public void AddItem()
        {
            ItemConnector sc = new ItemConnector();

            sc.InsertItem(this.Barcode, this.ItemDescription, this.ItemCategory.CategoryName);
        }
コード例 #2
0
ファイル: Item.cs プロジェクト: yb82/inventorymanager
        static public void AddItem(string barcode, string itemDescription, string itemCategory)
        {
            ItemConnector sc = new ItemConnector();

            sc.InsertItem(barcode, itemDescription, itemCategory);
        }