// GET: Test public ActionResult Index() { string Message = _room.GetAllItemsAsync(); return(View()); }
// GET: Features public async Task <IActionResult> Index() { return(View(await _hotelService.GetAllItemsAsync())); }