Esempio n. 1
0
 //Delete product from DB
 public void DeleteRow(int index, int id)
 {
     if (lblSuccess.Visible)
     {
         lblSuccess.Visible = false;
     }
     BL.Inventory inventory = new BL.Inventory();
     inventory.BLDeleteProduct(index, id);
     populateGV();
     populateDDL();
 }