BExIS.Web.Shell.Areas.BAM.Controllers.PartyController.Create C# (CSharp) Method

Create() public method

public Create ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Create()
        {
            ViewBag.Title = PresentationModel.GetViewTitleForTenant("Create Part", this.Session.GetTenant());

            PartyTypeManager partyTypeManager = new PartyTypeManager();
            var model = new PartyModel();
            model.PartyTypeList = partyTypeManager.Repo.Get().ToList();
            return View(model);
        }

Same methods

PartyController::Create ( PartyModel partyModel, string>.Dictionary partyCustomAttributeValues ) : System.Web.Mvc.ActionResult