protected async override Task OnInitializedAsync()
 {
     TodoItems = await TodoAppService.GetListAsync();
 }
Beispiel #2
0
 public async Task OnGetAsync()
 {
     TodoItems = await _todoAppService.GetListAsync();
 }