/// <summary>
 /// Function for delete data from tbl_BOM
 /// </summary>
 public void RemoveBom()
 {
     try
     {
         BomInfo infoBom = new BomInfo();
         ProductBomBll BllProductBom = new ProductBomBll();
         int inC = 0;
         while (strArrOfRemoveForBom[inC] != null)
         {
             decimal decId = Convert.ToDecimal(strArrOfRemoveForBom[inC]);
             BllProductBom.BomRemoveRows(decId);
             inC++;
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("PC:65" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }