/// <summary> /// Function for Tax View By ProductId /// </summary> /// <param name="strProductCode"></param> /// <returns></returns> public TaxInfo TaxViewByProductId(string strProductCode) { TaxInfo infoTax = new TaxInfo(); try { infoTax = spTax.TaxViewByProductId(strProductCode); } catch (Exception ex) { MessageBox.Show("TBLL11:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } return(infoTax); }