/// <summary>
        /// Function to retrieve the WERP plans
        /// </summary>
        /// <returns></returns>
        public DataSet GetWerpPlans()
        {
            DataSet ds = new DataSet();
            AdviserSubscriptionDao adviserSubscriptionDao = new AdviserSubscriptionDao();

            try
            {
                ds = adviserSubscriptionDao.GetWerpPlans();
            }
            catch (BaseApplicationException Ex)
            {
                throw Ex;
            }
            catch (Exception Ex)
            {
                BaseApplicationException exBase       = new BaseApplicationException(Ex.Message, Ex);
                NameValueCollection      FunctionInfo = new NameValueCollection();

                FunctionInfo.Add("Method", "AdviserSubscriptionBo.cs:GetWerpPlans()");

                object[] objects = new object[0];

                FunctionInfo = exBase.AddObject(FunctionInfo, objects);
                exBase.AdditionalInformation = FunctionInfo;
                ExceptionManager.Publish(exBase);
                throw exBase;
            }
            return(ds);
        }