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

ResetEditFormField() public method

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