public Result <IList <InvestmentSegment> > GetAll(int riskProfileId)
        {
            var result = new Result <IList <InvestmentSegment> >();
            InvestmentSegmentService invSegmentService = new InvestmentSegmentService();

            result.Value     = invSegmentService.GetAll(riskProfileId);
            result.IsSuccess = true;
            return(result);
        }