/// <summary>
        /// Function to fill StockJournalMaster details For Register Or Report based on parameters
        /// </summary>
        /// <param name="decMasterId"></param>
        /// <returns></returns>
        public List <DataTable> StockJournalMasterFillForRegisterOrReport(decimal decMasterId)
        {
            List <DataTable> listObj = new List <DataTable>();

            try
            {
                listObj = spStockJournalMaster.StockJournalMasterFillForRegisterOrReport(decMasterId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AL6:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(listObj);
        }