public IHttpActionResult GetAll() { try { IList <PagesModel> pages = _pagesService.GetAllAsync().Result; return(Ok(pages)); } catch (Exception ex) { return(InternalServerError(ex)); } }
public async Task OnGet() { Pages = await _pagesService.GetAllAsync(); }