Пример #1
0
 public void GetAllInventory()
 {
     DataManager dataManager = new DataManager(connectionString);
     allInventoryTable = dataManager.GetAllInventory();
     ProductsGridView.DataSource = allInventoryTable;
 }
Пример #2
0
 public void GetAllInventory()
 {
     DataManager dataManager = new DataManager(connectionString);
     inventoryTable = dataManager.GetAllInventory();
     InventoryGridView.DataSource = inventoryTable;
 }