AjaxExamples.Controllers.SessionsController.Remove C# (CSharp) Method

Remove() private method

private Remove ( System.Guid session_id ) : System.Web.Mvc.ActionResult
session_id System.Guid
return System.Web.Mvc.ActionResult
        public ActionResult Remove(Guid session_id)
        {
            _repository.RemoveSession(session_id);
            return RedirectToAction("index");
        }