Added DevExpress Dashboard to ASP.NET Core API and both Blazor WASM/Server frontends. Configured dashboard storage, sample data source, and API endpoint. Updated Blazor projects with dashboard packages, styles, and a new dashboard page. Navigation and configuration updated to support dashboard integration.
15 lines
546 B
Plaintext
15 lines
546 B
Plaintext
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
|
@using Microsoft.JSInterop
|
|
@using DbFirst.BlazorWasm
|
|
@using DbFirst.BlazorWasm.Layout
|
|
@using DbFirst.BlazorWasm.Models
|
|
@using DbFirst.BlazorWasm.Services
|
|
@using DevExpress.Blazor
|
|
@using DevExpress.DashboardBlazor
|
|
@using DevExpress.DashboardWeb |