using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using BlazorApV1.Models; using BlazorApV1.Services; using BlazorApV1.Components; using Microsoft.AspNetCore.Components; using BlazorApV1.Modals; using Blazored.LocalStorage; using Blazored.Modal; using Blazored.Modal.Services; using Blazorise.DataGrid; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Localization; namespace BlazorApV1.Pages { public partial class Index { [Inject] public IDataService DataService { get; set; } public List Items { get; set; } = new List(); private List Recipes { get; set; } = new List(); protected override async Task OnAfterRenderAsync(bool firstRender) { base.OnAfterRenderAsync(firstRender); if (!firstRender) { return; } Items = await DataService.List(0, await DataService.Count()); Recipes = await DataService.GetRecipes(); StateHasChanged(); } } }