Beispiel #1
0
        public IActionResult Entry()
        {
            var model = new StudentCreateViewModel();

            model.studentcollection = _studentManager.GetAll();
            model.DepartLoopupdata  = _utilityManager.GetAllDepartmentLoopUpData();
            return(View(model));
        }