protected void InitialiseEmployersViewBag(EmployerService svc) { ViewBag.Employers = svc.GetAllEmployers().ToList(); }
public ActionResult _EmployersGridBind() { var vm = AutoMapperSetup.MapList <Employer, EmployerVM>(_employerService.GetAllEmployers()); return(View(new GridModel(vm))); }