/// <summary>
 /// Function to check data in Multiple Unit table
 /// </summary>
 public void BomDeleteFunction()
 {
     try
     {
         ProductBomBll BllProductBom = new ProductBomBll();
         BllProductBom.BomDeleteForUpdation(decProductIdForEdit);
     }
     catch (Exception ex)
     {
         MessageBox.Show("PC:12" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }