//1. Version ohne View //public HtmlContentViewComponentResult Invoke() //{ // return new HtmlContentViewComponentResult(new HtmlString("Das ist eine <h3>ViewComponente</h3>")); //} //2. Version mit View public IViewComponentResult Invoke() { var autoren = _autorRepository.GetAll().ToList(); var sdtSummaryVm = new SdtSummaryViewModel { AnzahlAutoren = autoren.Count, AnzahlSprueche = autoren.Sum(c => c.Sprueche.Count) }; //return View(sdtSummaryVm); return(View("Alternative", sdtSummaryVm)); }
public IEnumerable <SelectListItem> GetAllAutor() { var listaAutoresSelect = new List <SelectListItem>(); _autorRepository.GetAll().ForEach(item => listaAutoresSelect .Add(new SelectListItem { Value = item.AutorId.ToString(), Text = item.Nome })); return(listaAutoresSelect); }
public IList <Autor> GetAllAutor() { return(_AutorRepository.GetAll()); }
public IEnumerable <AutorModel> GetAll() { return(_autorRepository.GetAll()); }
public IEnumerable <Autor> ListarAutores() { return(_autorRepository.GetAll()); }
// GET: Autor public ActionResult Index() { return(View(_repository.GetAll())); }
public IEnumerable <dynamic> GetAll() { return(_autorRepository.GetAll()); }
public ActionResult Index() { var autores = repository.GetAll(); return(View(autores)); }