public List <DataTable> DayBook(DateTime dtFromDate, DateTime dtToDate, decimal decVoucherTypeId, decimal decLedgerId, bool blCondenced)
        {
            List <DataTable> list = new List <DataTable>();

            try
            {
                list = spFinancialStatement.DayBook(dtFromDate, dtToDate, decVoucherTypeId, decLedgerId, blCondenced);
            }

            catch (Exception ex)
            {
                MessageBox.Show("FS17:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(list);
        }