예제 #1
0
파일: Sales.cs 프로젝트: njmube/PawnPOS
 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;
 }