Files
StandManager/StandManager/Components/_Imports.razor
2026-02-06 09:17:51 +01:00

25 lines
823 B
Plaintext

@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Authorization
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using StandManager
@using StandManager.Components
@using Microsoft.AspNetCore.Authorization
@using StandManager.Domain.Entita
@using StandManager.Service.Interfaces
@using Radzen
@using Radzen.Blazor
@using StandManager.Utils
@inject IManagerService _managerService
@inject DialogService _dialogService
@inject NotificationService _notificationService
@inject NavigationManager _navManager
@inject AuthenticationStateProvider _auth