Fix incompleto namespaces (da completare 2 voci)

This commit is contained in:
2026-09-07 18:14:41 +02:00
parent 701abdf15a
commit fe31814846
35 changed files with 90 additions and 55 deletions
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
using Egw.Window.Data;
using Egw.Data.Window;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
@@ -62,7 +62,7 @@ namespace WebAedificaConfigurator
using var reader = new StreamReader(stream);
string rawContent = await reader.ReadToEndAsync();
// parametri richiesta
Args.Add("Mode", $"{(int)Enums.QuestionModes.PREVIEW}");
Args.Add("Mode", $"{(int)Egw.Data.Enums.QuestionModes.PREVIEW}");
Args.Add("Btl", rawContent);
await EC_OnSave.InvokeAsync(Args);
}