public HttpResponseMessage SelectAll()
        {
            ItemsResponse <Testimonial> response = new ItemsResponse <Testimonial>();

            response.Items = _testimonial.SelectAll();

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