0
|
1 using System.Net.Http;
|
|
2 using Microsoft.AspNetCore.Authorization;
|
|
3 using Microsoft.AspNetCore.Components;
|
|
4 using Microsoft.AspNetCore.Components.Authorization;
|
|
5 using Microsoft.AspNetCore.Components.Forms;
|
|
6 using Microsoft.AspNetCore.Components.Routing;
|
|
7 using Microsoft.AspNetCore.Components.Web;
|
|
8 using Microsoft.AspNetCore.Components.Web.Virtualization;
|
|
9 using Microsoft.JSInterop;
|
|
10 using Radzen;
|
|
11 using Radzen.Blazor;
|
|
12
|
|
13 namespace Grille2.Components.Pages
|
|
14 {
|
|
15 public partial class Index
|
|
16 {
|
|
17 [Inject]
|
|
18 protected IJSRuntime JSRuntime { get; set; }
|
|
19
|
|
20 [Inject]
|
|
21 protected NavigationManager NavigationManager { get; set; }
|
|
22
|
|
23 [Inject]
|
|
24 protected DialogService DialogService { get; set; }
|
|
25
|
|
26 [Inject]
|
|
27 protected TooltipService TooltipService { get; set; }
|
|
28
|
|
29 [Inject]
|
|
30 protected ContextMenuService ContextMenuService { get; set; }
|
|
31
|
|
32 [Inject]
|
|
33 protected NotificationService NotificationService { get; set; }
|
|
34 }
|
|
35 } |