コード例 #1
0
        public ActionResultDTO Delete(int id)
        {
            var result = _munkiManifestTemplateServices.DeleteManifest(id);

            if (result == null)
            {
                throw new HttpResponseException(Request.CreateResponse(HttpStatusCode.NotFound));
            }
            return(result);
        }