using System.Web.Mvc; using Neo.LegitimateLicences.Common.Helpers; using Neo.LegitimateLicences.Web.Models.Afx; namespace Neo.LegitimateLicences.Web.Controllers { public partial class AfxController { #region Audit public ActionResult Audit(long entityID, long itemID) { var model = new AfxAuditModel(); WebHelper.SetLastPageVisited(HttpContext, "Afx/Audit"); ViewBag.Controller = "Afx"; ViewBag.Page = "Audit"; return View("~/Views/Shared/Afx/Audit/List.cshtml", model); } #endregion } }