AuthorityManagement.Web.Controllers.RoleManagerController.Delete C# (CSharp) Method

Delete() private method

private Delete ( System.Guid id ) : System.Web.Mvc.ActionResult
id System.Guid
return System.Web.Mvc.ActionResult
        public ActionResult Delete(Guid id)
        {
            this.roleService.Delete(id);
            return this.Json(OperationResult.Success("删除成功"));
        }