コード例 #1
0
ファイル: AdminController.cs プロジェクト: giopl/pearle-beach
        public ActionResult DeletePdf(int id)
        {
            try
            {
                IContentService contentService = new ContentService();
                contentService.DeletePdfById(id);


                return(RedirectToAction("ManagePdf", "Admin"));
            }
            catch (Exception)
            {
                throw;
            }
        }