Machete.Web.Controllers.PersonController.Create C# (CSharp) Method

Create() private method

private Create ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Create()
        {
            var _model = new Person();
            _model.gender = Lookups.getDefaultID(LCategory.gender);
            _model.active = true;
            return PartialView(_model);
        }

Same methods

PersonController::Create ( Person person, string userName ) : System.Web.Mvc.ActionResult