From 57c41c7a60acc334b597f7fe51a71cec61e7c9d5 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Sat, 8 Mar 2025 10:48:56 +0100 Subject: [PATCH] MP-PROG - fix naming DbModels --- MP.FileData/Controllers/FileController.cs | 2 +- MP.FileData/{DatabaseModels => DbModels}/ArchMaccModel.cs | 2 +- MP.FileData/{DatabaseModels => DbModels}/FileModel.cs | 2 +- MP.FileData/{DatabaseModels => DbModels}/TagModel.cs | 2 +- MP.FileData/ModelBuilderExtensions.cs | 2 +- MP.FileData/MoonPro_ProgContext.cs | 2 +- MP.Prog/Components/ArchiveEdit.razor.cs | 2 +- MP.Prog/Components/ArchiveStatus.razor.cs | 2 +- MP.Prog/Components/FileEditor.razor.cs | 2 +- MP.Prog/Components/RevList.razor.cs | 2 +- MP.Prog/Components/TagSearch.razor.cs | 2 +- MP.Prog/Data/FileArchDataService.cs | 2 +- MP.Prog/MP.Prog.csproj | 2 +- MP.Prog/Pages/Archive.razor.cs | 2 +- MP.Prog/Resources/ChangeLog.html | 2 +- MP.Prog/Resources/VersNum.txt | 2 +- MP.Prog/Resources/manifest.xml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) rename MP.FileData/{DatabaseModels => DbModels}/ArchMaccModel.cs (96%) rename MP.FileData/{DatabaseModels => DbModels}/FileModel.cs (98%) rename MP.FileData/{DatabaseModels => DbModels}/TagModel.cs (93%) diff --git a/MP.FileData/Controllers/FileController.cs b/MP.FileData/Controllers/FileController.cs index 8fdf3e9e..9ee9cc3a 100644 --- a/MP.FileData/Controllers/FileController.cs +++ b/MP.FileData/Controllers/FileController.cs @@ -7,7 +7,7 @@ using Microsoft.EntityFrameworkCore; using System.Linq; using System.Text; using System.Threading.Tasks; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using Newtonsoft.Json; using MP.FileData.DTO; using System.Text.RegularExpressions; diff --git a/MP.FileData/DatabaseModels/ArchMaccModel.cs b/MP.FileData/DbModels/ArchMaccModel.cs similarity index 96% rename from MP.FileData/DatabaseModels/ArchMaccModel.cs rename to MP.FileData/DbModels/ArchMaccModel.cs index e3cf19cf..96b15e60 100644 --- a/MP.FileData/DatabaseModels/ArchMaccModel.cs +++ b/MP.FileData/DbModels/ArchMaccModel.cs @@ -9,7 +9,7 @@ using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // -namespace MP.FileData.DatabaseModels +namespace MP.FileData.DbModels { [Table("Macchine")] public partial class ArchMaccModel diff --git a/MP.FileData/DatabaseModels/FileModel.cs b/MP.FileData/DbModels/FileModel.cs similarity index 98% rename from MP.FileData/DatabaseModels/FileModel.cs rename to MP.FileData/DbModels/FileModel.cs index 31bdf618..5e923cf9 100644 --- a/MP.FileData/DatabaseModels/FileModel.cs +++ b/MP.FileData/DbModels/FileModel.cs @@ -10,7 +10,7 @@ using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // -namespace MP.FileData.DatabaseModels +namespace MP.FileData.DbModels { /// /// Tabella archivio dei File Programma diff --git a/MP.FileData/DatabaseModels/TagModel.cs b/MP.FileData/DbModels/TagModel.cs similarity index 93% rename from MP.FileData/DatabaseModels/TagModel.cs rename to MP.FileData/DbModels/TagModel.cs index 849cb577..22d1b385 100644 --- a/MP.FileData/DatabaseModels/TagModel.cs +++ b/MP.FileData/DbModels/TagModel.cs @@ -9,7 +9,7 @@ using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // -namespace MP.FileData.DatabaseModels +namespace MP.FileData.DbModels { [Table("Tags")] public partial class TagModel diff --git a/MP.FileData/ModelBuilderExtensions.cs b/MP.FileData/ModelBuilderExtensions.cs index ce1c9d91..bcad3fb5 100644 --- a/MP.FileData/ModelBuilderExtensions.cs +++ b/MP.FileData/ModelBuilderExtensions.cs @@ -1,5 +1,5 @@ using Microsoft.EntityFrameworkCore; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using System; using System.Collections.Generic; using System.Linq; diff --git a/MP.FileData/MoonPro_ProgContext.cs b/MP.FileData/MoonPro_ProgContext.cs index b67d7ca5..498f36d8 100644 --- a/MP.FileData/MoonPro_ProgContext.cs +++ b/MP.FileData/MoonPro_ProgContext.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.Extensions.Configuration; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using NLog; namespace MP.FileData diff --git a/MP.Prog/Components/ArchiveEdit.razor.cs b/MP.Prog/Components/ArchiveEdit.razor.cs index 7de88b5b..7e6b9841 100644 --- a/MP.Prog/Components/ArchiveEdit.razor.cs +++ b/MP.Prog/Components/ArchiveEdit.razor.cs @@ -1,5 +1,5 @@ using Microsoft.AspNetCore.Components; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.Prog.Data; using System.Threading.Tasks; diff --git a/MP.Prog/Components/ArchiveStatus.razor.cs b/MP.Prog/Components/ArchiveStatus.razor.cs index 8436c327..c9deb837 100644 --- a/MP.Prog/Components/ArchiveStatus.razor.cs +++ b/MP.Prog/Components/ArchiveStatus.razor.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Configuration; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.FileData.DTO; using MP.Prog.Data; using NLog; diff --git a/MP.Prog/Components/FileEditor.razor.cs b/MP.Prog/Components/FileEditor.razor.cs index 0d00faf1..035faa18 100644 --- a/MP.Prog/Components/FileEditor.razor.cs +++ b/MP.Prog/Components/FileEditor.razor.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.Prog.Data; using NLog; using System; diff --git a/MP.Prog/Components/RevList.razor.cs b/MP.Prog/Components/RevList.razor.cs index c5b44208..e905edb3 100644 --- a/MP.Prog/Components/RevList.razor.cs +++ b/MP.Prog/Components/RevList.razor.cs @@ -1,7 +1,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; using MP.FileData; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.Prog.Data; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/MP.Prog/Components/TagSearch.razor.cs b/MP.Prog/Components/TagSearch.razor.cs index 6bdb95ca..c416a4cd 100644 --- a/MP.Prog/Components/TagSearch.razor.cs +++ b/MP.Prog/Components/TagSearch.razor.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Configuration; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.Prog; using MP.Prog.Data; diff --git a/MP.Prog/Data/FileArchDataService.cs b/MP.Prog/Data/FileArchDataService.cs index 38202ca0..c4dd19ad 100644 --- a/MP.Prog/Data/FileArchDataService.cs +++ b/MP.Prog/Data/FileArchDataService.cs @@ -15,7 +15,7 @@ using System.Diagnostics; using MP.FileData.Controllers; using MP.FileData.DTO; using StackExchange.Redis; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; namespace MP.Prog.Data { diff --git a/MP.Prog/MP.Prog.csproj b/MP.Prog/MP.Prog.csproj index 03258e52..a17603e0 100644 --- a/MP.Prog/MP.Prog.csproj +++ b/MP.Prog/MP.Prog.csproj @@ -3,7 +3,7 @@ net6.0 MP.Prog - 6.16.2502.1011 + 6.16.2503.0810 True diff --git a/MP.Prog/Pages/Archive.razor.cs b/MP.Prog/Pages/Archive.razor.cs index 649d3801..fc3cbf03 100644 --- a/MP.Prog/Pages/Archive.razor.cs +++ b/MP.Prog/Pages/Archive.razor.cs @@ -1,7 +1,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; using MP.FileData; -using MP.FileData.DatabaseModels; +using MP.FileData.DbModels; using MP.Prog.Data; using NLog; using System; diff --git a/MP.Prog/Resources/ChangeLog.html b/MP.Prog/Resources/ChangeLog.html index d03763ff..8c99038e 100644 --- a/MP.Prog/Resources/ChangeLog.html +++ b/MP.Prog/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo gestione Programmi MAPO -

Versione: 6.16.2502.1011

+

Versione: 6.16.2503.0810


Note di rilascio: