// GET: Sell public ActionResult Index() { var list = factorService.GetAll() .Select(x => mapperFacade.Map <Factor, FactorListModel>(x)) .ToList(); return(View(list)); }
public IActionResult Index() { var list = _factorService.GetAll(); return(View(list)); }