public IActionResult AddCandidate(int id)
        {
            var model = new ScreeningCandidateModel();

            model.ScreeningId = id;
            return(View(model));
        }
        public IActionResult AddScreeningCandidate()
        {
            var model = new ScreeningCandidateModel();

            return(PartialView("_ScreeningCandidate", model));
        }
Beispiel #3
0
        public IActionResult OpenCandidateModal()
        {
            var screeningCandidateModel = new ScreeningCandidateModel();

            return(PartialView("_AddCandidate", screeningCandidateModel));
        }