public IActionResult Index() { var flyers = _flyerRepository.GetAll(); var mapped = _mapper.Map <List <FlyerViewModel> >(flyers); return(View(mapped)); }
// GET: Flyer public ActionResult Index() { var flyers = _flyerRepository.GetAll(); return(View(flyers)); }