Beispiel #1
0
        public Result Add(STPTypeInvestmentRecomendation stpTypeInvestmentRecommendation)
        {
            var result = new Result();

            try
            {
                STPInvestmentRecomendationService sTPInvestmentRecomendationService =
                    new STPInvestmentRecomendationService();
                sTPInvestmentRecomendationService.Add(stpTypeInvestmentRecommendation);
                result.IsSuccess = true;
            }
            catch (Exception exception)
            {
                result.IsSuccess     = false;
                result.ExceptionInfo = exception;
            }
            return(result);
        }