ITimeU.Controllers.AthleteController.ResetDeleteFormField C# (CSharp) Method

ResetDeleteFormField() public method

public ResetDeleteFormField ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult ResetDeleteFormField()
        {
            setViewData();
            ViewBag.Club = ClubModel.GetAll();
            ViewBag.IsAthleteDelete = true;
            ViewBag.IsAthleteUpdate = false;
            ViewBag.IsValidInput = true;
            return View("Edit", new AthleteModel());
        }