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

Delete() private method

private Delete ( Party party ) : System.Web.Mvc.ActionResult
party BExIS.Dlm.Entities.Party.Party
return System.Web.Mvc.ActionResult
        public ActionResult Delete(Party party)
        {
            PartyManager partyManager = new PartyManager();
            //  party = partyManager.Repo.Reload(party);
            partyManager.Delete(party);
            return RedirectToAction("Index");
        }