Mhotivo.Controllers.StudentController.Add C# (CSharp) Method

Add() private method

private Add ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Add()
        {
            ViewBag.Tutor1Id = new SelectList(_parentRepository.Query(x => x), "Id", "FullName",0);
            ViewBag.Tutor2Id = new SelectList(_parentRepository.Query(x => x), "Id", "FullName",0);
            return View("Create");
        }

Same methods

StudentController::Add ( StudentRegisterModel modelStudent ) : System.Web.Mvc.ActionResult