public HttpResponseMessage GetInvestmentType(long investmentId)
        {
            var investment = _logic.ReadInvestmentType(investmentId);

            return(Request.CreateResponse(HttpStatusCode.OK, investment));
        }