public Result <IList <SIPTypeInvestmentRecomendation> > GetAll(int plannerId)
        {
            var result = new Result <IList <SIPTypeInvestmentRecomendation> >();
            SIPTypeInvestmentRecomendationService sIPTypeInvestmentRecomendationService = new SIPTypeInvestmentRecomendationService();

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