예제 #1
0
        public ActionResult <ListEmployerForListVm> Index()
        {
            var model = _employerService.GetAllActiveEmployersForList(3, 1, "");

            if (model == null)
            {
                return(NotFound());
            }
            return(Ok(model));
        }
예제 #2
0
        public IActionResult Index()
        {
            var model = _employerService.GetAllActiveEmployersForList(3, 1, "");

            return(View(model));
        }