Ejemplo n.º 1
0
        public ActionResult DeletePdf(int id)
        {
            try
            {
                IContentService contentService = new ContentService();
                contentService.DeletePdfById(id);


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