public ActionResult <IEnumerable <GuestbookDto> > Get() { var theGuestbooks = mGuestbookManagement.ListAll(); return(theGuestbooks.ToList()); }
// GET: Guestbook public IActionResult Index() { var theGuestbooks = mGuestbookManagement.ListAll(); return(View(theGuestbooks)); }