Exemplo n.º 1
0
        public void AddItem()
        {
            ItemConnector sc = new ItemConnector();

            sc.InsertItem(this.Barcode, this.ItemDescription, this.ItemCategory.CategoryName);
        }
Exemplo n.º 2
0
        static public void AddItem(string barcode, string itemDescription, string itemCategory)
        {
            ItemConnector sc = new ItemConnector();

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