コード例 #1
0
        public HttpResponseMessage DeleteImage(string roomTypeId, string imageId)
        {
            var svc = new RoomTypeService();

            svc.DeleteImage(roomTypeId, imageId);
            return(Request.CreateResponse(HttpStatusCode.OK));
        }