Exemplo n.º 1
0
        public DataSet GetAdviserBranchMF_EQ_In_AggregateCurrentValues(int advisorId)
        {
            AssetDao assetDao = new AssetDao();
            DataSet  ds       = new DataSet();

            try
            {
                ds = assetDao.GetAdviserBranchMF_EQ_In_AggregateCurrentValues(advisorId);
            }
            catch (BaseApplicationException Ex)
            {
                throw Ex;
            }
            catch (Exception Ex)
            {
                BaseApplicationException exBase       = new BaseApplicationException(Ex.Message, Ex);
                NameValueCollection      FunctionInfo = new NameValueCollection();
                FunctionInfo.Add("Method", "AssetBo.cs:GetAdviserBranchMF_EQ_In_AggregateCurrentValues()");
                object[] objects = new object[1];
                objects[0]   = advisorId;
                FunctionInfo = exBase.AddObject(FunctionInfo, objects);
                exBase.AdditionalInformation = FunctionInfo;
                ExceptionManager.Publish(exBase);
                throw exBase;
            }
            return(ds);
        }