public Result Add(InvestmentSegment investmentSegment)
        {
            var result = new Result();

            try
            {
                InvestmentSegmentService invSegmentService = new InvestmentSegmentService();
                invSegmentService.Add(investmentSegment);
                result.IsSuccess = true;
            }
            catch (Exception exception)
            {
                result.IsSuccess     = false;
                result.ExceptionInfo = exception;
            }
            return(result);
        }