Example #1
0
 public async Task ShouldGetByUrlAsync()
 {
     await Should.NotThrowAsync(async() => await _pageAppService.GetByUrlAsync(_data.Page_1_Url));
 }
Example #2
0
 public async Task OnGetAsync()
 {
     Page = await PageAppService.GetByUrlAsync(PageUrl);
 }
Example #3
0
 public Task <PageDto> GetByUrlAsync(string url)
 {
     return(PageAppService.GetByUrlAsync(url));
 }