예제 #1
0
        public IActionResult AddEmployer(NewEmployerVm model)
        {
            var id = _employerService.AddEmployer(model);

            return(RedirectToAction("Index"));
        }