/// <summary> /// Indexes the specified urlname. /// </summary> /// <param name="urlName">The urlname.</param> /// <returns>Action Result</returns> public ActionResult BaseIndex(string urlName) { CurrentJobProfileUrl = urlName; if (CurrentJobProfile is null) { return(HttpNotFound()); } else { var timer = Stopwatch.StartNew(); WebAppContext.SetMetaDescription(CurrentJobProfile.Overview); var actionResult = GetDefaultView(); timer.Stop(); Log.Trace($"Completed executing action in {timer.Elapsed}"); return(actionResult); } }