示例#1
0
        /// <summary>
        /// This method returns the portfolio of the user with the id provided in the parameter
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public PortFolioDetails GetPortFolioDetailsByID(int id)
        {
            PortFolioDetails portfolioDetails = new PortFolioDetails();

            try
            {
                _log4net.Info("Returning the portfolio object from the provider method of user :"******"Exception ocured while getting the portfolio:" + ex.Message);
            }
            return(portfolioDetails);
        }
示例#2
0
 public PortFolioDetails GetPortFolioDetailsByID(int id)
 {
     return(_netWorthRepository.GetPortFolioDetailsByID(id));
 }