示例#1
0
        public ActionResult DeleteLink(int id)
        {
            try
            {
                IContentService contentService = new ContentService();

                contentService.DeleteLink(id);

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