diff --git a/Directory.Packages.props b/Directory.Packages.props index 21f3319..b6c0282 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -9,8 +9,8 @@ all - - + + diff --git a/Test.UI/Components/Pages/BaseEdit.razor.cs b/Test.UI/Components/Pages/BaseEdit.razor.cs index 0835846..d2dcded 100644 --- a/Test.UI/Components/Pages/BaseEdit.razor.cs +++ b/Test.UI/Components/Pages/BaseEdit.razor.cs @@ -1,4 +1,5 @@ using Egw.Data.Window; +using Egw.Data.Window.Dto; using EgwCoreLib.Lux.Core; using EgwCoreLib.Lux.Core.RestPayload; using EgwCoreLib.Lux.Data.Services; diff --git a/Test.UI/Components/Pages/EditJWD.razor.cs b/Test.UI/Components/Pages/EditJWD.razor.cs index 7ccd28c..fdc6cbe 100644 --- a/Test.UI/Components/Pages/EditJWD.razor.cs +++ b/Test.UI/Components/Pages/EditJWD.razor.cs @@ -4,6 +4,7 @@ using EgwCoreLib.Lux.Core; using EgwCoreLib.Lux.Core.RestPayload; using EgwCoreLib.Lux.Data.DbModel.Config; using EgwCoreLib.Lux.Data.DbModel.Utils; +using EgwCoreLib.Lux.Data.Mappings; using EgwCoreLib.Lux.Data.Services; using EgwCoreLib.Lux.Data.Services.Config; using EgwCoreLib.Lux.Data.Services.General; @@ -271,7 +272,9 @@ namespace Test.UI.Components.Pages { // lettura config setup varie da DB/Cache Redis AllConfGlass = await CGService.GetAllAsync(); - AvailProfileList = await CPService.GetAllAsync(); + //AvailProfileList = await CPService.GetAllAsync(); + var rawList= await CPService.GetAllAsync(); + AvailProfileList = rawList.ToBaseProfileList().ToList(); // FixMe Todo: eliminare da REDIS e usare elenco DB solamente... var rawProfiles = await CDService.ProfileListAsync(cEnvir, "Default"); diff --git a/Test.UI/Components/Pages/Home.razor.cs b/Test.UI/Components/Pages/Home.razor.cs index b8aa5ef..f1e6423 100644 --- a/Test.UI/Components/Pages/Home.razor.cs +++ b/Test.UI/Components/Pages/Home.razor.cs @@ -9,6 +9,7 @@ using Egw.Data.Window; using WebWindowComplex.DTO; using WebWindowConfigurator.DTO; using EgwCoreLib.Lux.Data.Services.General; +using Egw.Data.Window.Dto; namespace Test.UI.Components.Pages { diff --git a/Test.UI/Components/Pages/TestError.razor.cs b/Test.UI/Components/Pages/TestError.razor.cs index f4035f7..490957c 100644 --- a/Test.UI/Components/Pages/TestError.razor.cs +++ b/Test.UI/Components/Pages/TestError.razor.cs @@ -1,4 +1,5 @@ using Egw.Data.Window; +using Egw.Data.Window.Dto; using EgwCoreLib.Lux.Core; using EgwCoreLib.Lux.Core.RestPayload; using EgwCoreLib.Lux.Data.Services; diff --git a/WebWindowComplex/WebWindowComplex.csproj b/WebWindowComplex/WebWindowComplex.csproj index 38f041b..bbeb129 100644 --- a/WebWindowComplex/WebWindowComplex.csproj +++ b/WebWindowComplex/WebWindowComplex.csproj @@ -142,6 +142,8 @@ + + diff --git a/WebWindowConfigurator/WebWindowConfigurator.csproj b/WebWindowConfigurator/WebWindowConfigurator.csproj index 2006e42..97e5eed 100644 --- a/WebWindowConfigurator/WebWindowConfigurator.csproj +++ b/WebWindowConfigurator/WebWindowConfigurator.csproj @@ -241,6 +241,8 @@ + +