コード例 #1
0
        //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));
        }
コード例 #2
0
        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);
        }
コード例 #3
0
 public IList <Autor> GetAllAutor()
 {
     return(_AutorRepository.GetAll());
 }
コード例 #4
0
ファイル: AutorService.cs プロジェクト: fdbva/ADSL20M3.Mvc2
 public IEnumerable <AutorModel> GetAll()
 {
     return(_autorRepository.GetAll());
 }
コード例 #5
0
 public IEnumerable <Autor> ListarAutores()
 {
     return(_autorRepository.GetAll());
 }
コード例 #6
0
ファイル: AutorController.cs プロジェクト: rbissoli/DapperApp
 // GET: Autor
 public ActionResult Index()
 {
     return(View(_repository.GetAll()));
 }
コード例 #7
0
 public IEnumerable <dynamic> GetAll()
 {
     return(_autorRepository.GetAll());
 }
コード例 #8
0
ファイル: HomeController.cs プロジェクト: rbissoli/DapperApp
        public ActionResult Index()
        {
            var autores = repository.GetAll();

            return(View(autores));
        }