コード例 #1
0
        public ActionResult <IEnumerable <GuestbookDto> > Get()
        {
            var theGuestbooks = mGuestbookManagement.ListAll();

            return(theGuestbooks.ToList());
        }
コード例 #2
0
        // GET: Guestbook
        public IActionResult Index()
        {
            var theGuestbooks = mGuestbookManagement.ListAll();

            return(View(theGuestbooks));
        }