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.
14 lines
444 B
C#
14 lines
444 B
C#
using DevExpress.DashboardAspNetCore;
|
|
using DevExpress.DashboardWeb;
|
|
using Microsoft.AspNetCore.DataProtection;
|
|
|
|
namespace BlazorDashboardApp.Server
|
|
{
|
|
public class DefaultDashboardController : DashboardController
|
|
{
|
|
public DefaultDashboardController(DashboardConfigurator configurator, IDataProtectionProvider? dataProtectionProvider = null)
|
|
: base(configurator, dataProtectionProvider)
|
|
{
|
|
}
|
|
}
|
|
} |