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

Create() private method

private Create ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Create()
        {
            var newRole = new RoleInputDto();
            return this.Json(OperationResult.Success(string.Empty, string.Empty, newRole), JsonRequestBehavior.AllowGet);
        }