예제 #1
0
        public IActionResult Panel()
        {
            var model = new PanelViewModel()
            {
                Posts  = _postRepository.getAllPosts(),
                Animes = _animeRepository.GetAllAnimes(),
                Mangas = _mangaRepository.GetAllMangas(),
            };

            return(View(model));
        }
예제 #2
0
 public IActionResult Index()
 {
     return(View(_mangaRepository.GetAllMangas()));
 }