public DataTable GetOfflineIPOOrderBook(int adviserId, int issueNo, string status, DateTime dtFrom, DateTime dtTo, int orderId, string userType, string agentCode, string ModificationType, int userId)
        {
            DataTable dtIPOOrder;
            OfflineIPOBackOfficeDao OfflineIPOBackOfficeDao = new OfflineIPOBackOfficeDao();

            try
            {
                dtIPOOrder = OfflineIPOBackOfficeDao.GetOfflineIPOOrderBook(adviserId, issueNo, status, dtFrom, dtTo, orderId, userType, agentCode, ModificationType, userId);
            }
            catch (BaseApplicationException Ex)
            {
                throw Ex;
            }
            catch (Exception Ex)
            {
                BaseApplicationException exBase       = new BaseApplicationException(Ex.Message, Ex);
                NameValueCollection      FunctionInfo = new NameValueCollection();
                FunctionInfo.Add("Method", "OfflineIPOBackOfficeBo.cs:GetOfflineIPOOrderBook()");
                object[] objects = new object[0];
                FunctionInfo = exBase.AddObject(FunctionInfo, objects);
                exBase.AdditionalInformation = FunctionInfo;
                ExceptionManager.Publish(exBase);
                throw exBase;
            }
            return(dtIPOOrder);
        }