Esempio n. 1
0
        public HttpResponseMessage GetByProductId(long id)
        {
            var imageList = _imagesRepository.GetImageByProductId(id);
            HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, imageList);

            return(response);
        }