Beispiel #1
0
        public Result <IList <STPTypeInvestmentRecomendation> > GetAll(int plannerId)
        {
            var result = new Result <IList <STPTypeInvestmentRecomendation> >();
            STPInvestmentRecomendationService stpInvestmentRecomendationService = new STPInvestmentRecomendationService();

            result.Value     = stpInvestmentRecomendationService.GetAll(plannerId);
            result.IsSuccess = true;
            return(result);
        }