/// <summary>
 /// Function to get the details of PurchaseReturn Report
 /// </summary>
 /// <param name="fromDate"></param>
 /// <param name="toDate"></param>
 /// <param name="decLedgerId"></param>
 /// <param name="decVoucherTypeId"></param>
 /// <param name="decInvoiceNo"></param>
 /// <param name="strProductCode"></param>
 /// <param name="strVoucherNo"></param>
 /// <returns></returns>
 public List<DataTable> PurchaseReturnReportGridFill(DateTime fromDate, DateTime toDate, decimal decLedgerId, decimal decVoucherTypeId, decimal decInvoiceNo, string strProductCode, string strVoucherNo)
 {
     PurchaseReturnMasterSP SPPurchaseReturnMaster = new PurchaseReturnMasterSP();
        List<DataTable> ListObj = new List<DataTable>();
        try
        {
        ListObj = SPPurchaseReturnMaster.PurchaseReturnReportGridFill(fromDate, toDate, decLedgerId, decVoucherTypeId, decInvoiceNo, strProductCode, strVoucherNo);
        }
        catch (Exception ex)
        {
        MessageBox.Show("PrBll 4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
        return ListObj;
 }