diff --git a/TecniStamp/TecniStamp.Domain/Lavorazione.cs b/TecniStamp/TecniStamp.Domain/Lavorazione.cs new file mode 100644 index 0000000..1b6fbfd --- /dev/null +++ b/TecniStamp/TecniStamp.Domain/Lavorazione.cs @@ -0,0 +1,13 @@ +using TecniStamp.Domain.Base; + +namespace TecniStamp.Domain; + +public class Lavorazione : EntitaBase +{ + public string Descrizione { get; set; } + public float? CostoOrario { get; set; } + public string Codice { get; set; } + public string ChiaveEsterna { get; set; } + public string CodiceColore { get; set; } + public bool Sovrapponibile { get; set; } +} \ No newline at end of file diff --git a/TecniStamp/TecniStamp.Domain/Macchinario.cs b/TecniStamp/TecniStamp.Domain/Macchinario.cs new file mode 100644 index 0000000..52918e1 --- /dev/null +++ b/TecniStamp/TecniStamp.Domain/Macchinario.cs @@ -0,0 +1,12 @@ +using TecniStamp.Domain.Base; + +namespace TecniStamp.Domain; + +public class Macchinario : EntitaBase +{ + public string Descrizione { get; set; } + public bool Interscambio { get; set; } + public string ConfigurazionePercorso { get; set; } + public string ConfigurazioneJSON { get; set; } + public string CodiceEsterno { get; set; } +} \ No newline at end of file diff --git a/TecniStamp/TecniStamp.Domain/Utente.cs b/TecniStamp/TecniStamp.Domain/Utente.cs index 9bae17a..e278ca6 100644 --- a/TecniStamp/TecniStamp.Domain/Utente.cs +++ b/TecniStamp/TecniStamp.Domain/Utente.cs @@ -14,4 +14,6 @@ public class Utente : EntitaBase [ForeignKey(nameof(Ruolo))] public Guid? RuoloId { get; set; } public Ruolo Ruolo { get; set; } + + public decimal Costo { get; set; } } \ No newline at end of file diff --git a/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.dll b/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.dll index e70a03f..40ca049 100644 Binary files a/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.dll and b/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.dll differ diff --git a/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.pdb b/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.pdb index 895dc14..6e3aa73 100644 Binary files a/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.pdb and b/TecniStamp/TecniStamp.Domain/bin/Debug/net8.0/TecniStamp.Domain.pdb differ diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfo.cs b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfo.cs index 9c05931..f225832 100644 --- a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfo.cs +++ b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TecniStamp.Domain")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+314cd9eaee3ba473d99f41b9199d0b448a458ada")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+beb458b3b98220358a8f47cc2020191dcc4b34ba")] [assembly: System.Reflection.AssemblyProductAttribute("TecniStamp.Domain")] [assembly: System.Reflection.AssemblyTitleAttribute("TecniStamp.Domain")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfoInputs.cache b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfoInputs.cache index 98c620b..7da95ea 100644 --- a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfoInputs.cache +++ b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.AssemblyInfoInputs.cache @@ -1 +1 @@ -2704a959916edade4b41d5b4ecbca213497f1fde9bb56757d0f548c5e3aa82f2 +fcd191d2caafce0f12264bcb83e363787cef912620bcb64a8b13300bc04286bf diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.csproj.CoreCompileInputs.cache b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.csproj.CoreCompileInputs.cache index aa48d07..9323e65 100644 --- a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.csproj.CoreCompileInputs.cache +++ b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -fee0d141a39c759f2b1b52ebf98d1c18ae148fa313c05e5a8c6e49f093a59cd7 +943d5d0168bf04add7afefc6174369c8c9bba6cb41193ac65c52c99e06c8271c diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.dll b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.dll index e70a03f..40ca049 100644 Binary files a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.dll and b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.dll differ diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.pdb b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.pdb index 895dc14..6e3aa73 100644 Binary files a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.pdb and b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/TecniStamp.Domain.pdb differ diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/ref/TecniStamp.Domain.dll b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/ref/TecniStamp.Domain.dll index b33be3b..eb9949b 100644 Binary files a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/ref/TecniStamp.Domain.dll and b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/ref/TecniStamp.Domain.dll differ diff --git a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/refint/TecniStamp.Domain.dll b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/refint/TecniStamp.Domain.dll index b33be3b..eb9949b 100644 Binary files a/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/refint/TecniStamp.Domain.dll and b/TecniStamp/TecniStamp.Domain/obj/Debug/net8.0/refint/TecniStamp.Domain.dll differ diff --git a/TecniStamp/TecniStamp.Infrastructure/DAL/Context/TecniStampDbContext.cs b/TecniStamp/TecniStamp.Infrastructure/DAL/Context/TecniStampDbContext.cs index 949183e..4b1e918 100644 --- a/TecniStamp/TecniStamp.Infrastructure/DAL/Context/TecniStampDbContext.cs +++ b/TecniStamp/TecniStamp.Infrastructure/DAL/Context/TecniStampDbContext.cs @@ -9,6 +9,9 @@ public class TecniStampDbContext : OAServiceContext public TecniStampDbContext() : base() { } public TecniStampDbContext(DbContextOptions options) : base(options) { } + public DbSet Feature { get; set; } + public DbSet Lavorazione { get; set; } + public DbSet Macchinario { get; set; } public DbSet Permission { get; set; } public DbSet Ruolo { get; set; } public DbSet Sezione { get; set; } diff --git a/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.Designer.cs b/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.Designer.cs new file mode 100644 index 0000000..b5480fd --- /dev/null +++ b/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.Designer.cs @@ -0,0 +1,508 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using TecniStamp.Infrastructure.DAL.Context; + +#nullable disable + +namespace TecniStamp.Infrastructure.Migrations +{ + [DbContext(typeof(TecniStampDbContext))] + [Migration("20260130123720_Anagrafiche")] + partial class Anagrafiche + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.11") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("TecniStamp.Domain.Feature", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Descrizione") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Nome") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Ordinamento") + .HasColumnType("int"); + + b.Property("SezioneId") + .HasColumnType("uniqueidentifier"); + + b.Property("Type") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.HasIndex("SezioneId"); + + b.ToTable("Feature"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Lavorazione", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ChiaveEsterna") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Codice") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("CodiceColore") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("CostoOrario") + .HasColumnType("real"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Descrizione") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Sovrapponibile") + .HasColumnType("bit"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.ToTable("Lavorazione"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Macchinario", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("CodiceEsterno") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("ConfigurazioneJSON") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("ConfigurazionePercorso") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Descrizione") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Interscambio") + .HasColumnType("bit"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.ToTable("Macchinario"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Permission", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdFeature") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("RuoloId") + .HasColumnType("uniqueidentifier"); + + b.HasKey("Id"); + + b.HasIndex("IdFeature"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.HasIndex("RuoloId"); + + b.ToTable("Permission"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Ruolo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Nome") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.ToTable("Ruolo"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Sezione", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("Icona") + .HasColumnType("nvarchar(max)"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Nome") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Ordinamento") + .HasColumnType("int"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.HasIndex("ParentId"); + + b.ToTable("Sezione"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Utente", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Cognome") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Costo") + .HasColumnType("decimal(18,2)"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("Email") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Nome") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Password") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("RuoloId") + .HasColumnType("uniqueidentifier"); + + b.Property("Username") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.HasIndex("RuoloId"); + + b.ToTable("Utente"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Feature", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.HasOne("TecniStamp.Domain.Sezione", "Sezione") + .WithMany("Features") + .HasForeignKey("SezioneId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Sezione"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Lavorazione", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Macchinario", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Permission", b => + { + b.HasOne("TecniStamp.Domain.Feature", "Feature") + .WithMany() + .HasForeignKey("IdFeature") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.HasOne("TecniStamp.Domain.Ruolo", "Ruolo") + .WithMany("Permessi") + .HasForeignKey("RuoloId"); + + b.Navigation("Feature"); + + b.Navigation("Ruolo"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Ruolo", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Sezione", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.HasOne("TecniStamp.Domain.Sezione", "Parent") + .WithMany() + .HasForeignKey("ParentId"); + + b.Navigation("Parent"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Utente", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.HasOne("TecniStamp.Domain.Ruolo", "Ruolo") + .WithMany("Utenti") + .HasForeignKey("RuoloId"); + + b.Navigation("Ruolo"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Ruolo", b => + { + b.Navigation("Permessi"); + + b.Navigation("Utenti"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Sezione", b => + { + b.Navigation("Features"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.cs b/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.cs new file mode 100644 index 0000000..6c1dd00 --- /dev/null +++ b/TecniStamp/TecniStamp.Infrastructure/Migrations/20260130123720_Anagrafiche.cs @@ -0,0 +1,119 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TecniStamp.Infrastructure.Migrations +{ + /// + public partial class Anagrafiche : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Costo", + table: "Utente", + type: "decimal(18,2)", + nullable: false, + defaultValue: 0m); + + migrationBuilder.CreateTable( + name: "Lavorazione", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Descrizione = table.Column(type: "nvarchar(max)", nullable: false), + CostoOrario = table.Column(type: "real", nullable: true), + Codice = table.Column(type: "nvarchar(max)", nullable: false), + ChiaveEsterna = table.Column(type: "nvarchar(max)", nullable: false), + CodiceColore = table.Column(type: "nvarchar(max)", nullable: false), + Sovrapponibile = table.Column(type: "bit", nullable: false), + DataCreazione = table.Column(type: "datetime2", nullable: false), + DataModifica = table.Column(type: "datetime2", nullable: true), + Eliminato = table.Column(type: "bit", nullable: false), + IdUtenteCreazione = table.Column(type: "uniqueidentifier", nullable: true), + IdUtenteModifica = table.Column(type: "uniqueidentifier", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Lavorazione", x => x.Id); + table.ForeignKey( + name: "FK_Lavorazione_Utente_IdUtenteCreazione", + column: x => x.IdUtenteCreazione, + principalTable: "Utente", + principalColumn: "Id"); + table.ForeignKey( + name: "FK_Lavorazione_Utente_IdUtenteModifica", + column: x => x.IdUtenteModifica, + principalTable: "Utente", + principalColumn: "Id"); + }); + + migrationBuilder.CreateTable( + name: "Macchinario", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Descrizione = table.Column(type: "nvarchar(max)", nullable: false), + Interscambio = table.Column(type: "bit", nullable: false), + ConfigurazionePercorso = table.Column(type: "nvarchar(max)", nullable: false), + ConfigurazioneJSON = table.Column(type: "nvarchar(max)", nullable: false), + CodiceEsterno = table.Column(type: "nvarchar(max)", nullable: false), + DataCreazione = table.Column(type: "datetime2", nullable: false), + DataModifica = table.Column(type: "datetime2", nullable: true), + Eliminato = table.Column(type: "bit", nullable: false), + IdUtenteCreazione = table.Column(type: "uniqueidentifier", nullable: true), + IdUtenteModifica = table.Column(type: "uniqueidentifier", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Macchinario", x => x.Id); + table.ForeignKey( + name: "FK_Macchinario_Utente_IdUtenteCreazione", + column: x => x.IdUtenteCreazione, + principalTable: "Utente", + principalColumn: "Id"); + table.ForeignKey( + name: "FK_Macchinario_Utente_IdUtenteModifica", + column: x => x.IdUtenteModifica, + principalTable: "Utente", + principalColumn: "Id"); + }); + + migrationBuilder.CreateIndex( + name: "IX_Lavorazione_IdUtenteCreazione", + table: "Lavorazione", + column: "IdUtenteCreazione"); + + migrationBuilder.CreateIndex( + name: "IX_Lavorazione_IdUtenteModifica", + table: "Lavorazione", + column: "IdUtenteModifica"); + + migrationBuilder.CreateIndex( + name: "IX_Macchinario_IdUtenteCreazione", + table: "Macchinario", + column: "IdUtenteCreazione"); + + migrationBuilder.CreateIndex( + name: "IX_Macchinario_IdUtenteModifica", + table: "Macchinario", + column: "IdUtenteModifica"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Lavorazione"); + + migrationBuilder.DropTable( + name: "Macchinario"); + + migrationBuilder.DropColumn( + name: "Costo", + table: "Utente"); + } + } +} diff --git a/TecniStamp/TecniStamp.Infrastructure/Migrations/TecniStampDbContextModelSnapshot.cs b/TecniStamp/TecniStamp.Infrastructure/Migrations/TecniStampDbContextModelSnapshot.cs index 09490c4..4f9a817 100644 --- a/TecniStamp/TecniStamp.Infrastructure/Migrations/TecniStampDbContextModelSnapshot.cs +++ b/TecniStamp/TecniStamp.Infrastructure/Migrations/TecniStampDbContextModelSnapshot.cs @@ -71,6 +71,107 @@ namespace TecniStamp.Infrastructure.Migrations b.ToTable("Feature"); }); + modelBuilder.Entity("TecniStamp.Domain.Lavorazione", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ChiaveEsterna") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Codice") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("CodiceColore") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("CostoOrario") + .HasColumnType("real"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Descrizione") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Sovrapponibile") + .HasColumnType("bit"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.ToTable("Lavorazione"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Macchinario", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("CodiceEsterno") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("ConfigurazioneJSON") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("ConfigurazionePercorso") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("DataCreazione") + .HasColumnType("datetime2"); + + b.Property("DataModifica") + .HasColumnType("datetime2"); + + b.Property("Descrizione") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Eliminato") + .HasColumnType("bit"); + + b.Property("IdUtenteCreazione") + .HasColumnType("uniqueidentifier"); + + b.Property("IdUtenteModifica") + .HasColumnType("uniqueidentifier"); + + b.Property("Interscambio") + .HasColumnType("bit"); + + b.HasKey("Id"); + + b.HasIndex("IdUtenteCreazione"); + + b.HasIndex("IdUtenteModifica"); + + b.ToTable("Macchinario"); + }); + modelBuilder.Entity("TecniStamp.Domain.Permission", b => { b.Property("Id") @@ -200,6 +301,9 @@ namespace TecniStamp.Infrastructure.Migrations .IsRequired() .HasColumnType("nvarchar(max)"); + b.Property("Costo") + .HasColumnType("decimal(18,2)"); + b.Property("DataCreazione") .HasColumnType("datetime2"); @@ -268,6 +372,36 @@ namespace TecniStamp.Infrastructure.Migrations b.Navigation("UtenteModifica"); }); + modelBuilder.Entity("TecniStamp.Domain.Lavorazione", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + + modelBuilder.Entity("TecniStamp.Domain.Macchinario", b => + { + b.HasOne("TecniStamp.Domain.Utente", "UtenteCreazione") + .WithMany() + .HasForeignKey("IdUtenteCreazione"); + + b.HasOne("TecniStamp.Domain.Utente", "UtenteModifica") + .WithMany() + .HasForeignKey("IdUtenteModifica"); + + b.Navigation("UtenteCreazione"); + + b.Navigation("UtenteModifica"); + }); + modelBuilder.Entity("TecniStamp.Domain.Permission", b => { b.HasOne("TecniStamp.Domain.Feature", "Feature") diff --git a/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.dll b/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.dll index 3f70764..1311eee 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.dll and b/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.dll differ diff --git a/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.pdb b/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.pdb index 213162d..c08a271 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.pdb and b/TecniStamp/TecniStamp.Infrastructure/bin/Debug/net8.0/TecniStamp.Infrastructure.pdb differ diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfo.cs b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfo.cs index 40f1a00..5088a99 100644 --- a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfo.cs +++ b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TecniStamp.Infrastructure")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+314cd9eaee3ba473d99f41b9199d0b448a458ada")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+beb458b3b98220358a8f47cc2020191dcc4b34ba")] [assembly: System.Reflection.AssemblyProductAttribute("TecniStamp.Infrastructure")] [assembly: System.Reflection.AssemblyTitleAttribute("TecniStamp.Infrastructure")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfoInputs.cache b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfoInputs.cache index 772e273..427883e 100644 --- a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfoInputs.cache +++ b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.AssemblyInfoInputs.cache @@ -1 +1 @@ -58c272edce1a84760476d4f28abe62a51a4916381f4fe7503844993b39a52051 +fb446823a99331d8d4bb2ddff8cf7838014ca56b4ffb63d7abbb3b20182bdf5b diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.AssemblyReference.cache b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.AssemblyReference.cache index a26f9de..f3ae24b 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.AssemblyReference.cache and b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.CoreCompileInputs.cache b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.CoreCompileInputs.cache index 020ef47..52d9c06 100644 --- a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.CoreCompileInputs.cache +++ b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -f2f8d6cf2f51205a9f9439427305e734f20cebb788cf0f3bb29c105163eb910a +0b9c29abb0b6954d0e7395c01ae6dfd4cb0d61acf18eb1e83cb222bc40fc39ac diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.dll b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.dll index 3f70764..1311eee 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.dll and b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.dll differ diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.pdb b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.pdb index 213162d..c08a271 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.pdb and b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/TecniStamp.Infrastructure.pdb differ diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/ref/TecniStamp.Infrastructure.dll b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/ref/TecniStamp.Infrastructure.dll index 80e94fa..bccaad9 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/ref/TecniStamp.Infrastructure.dll and b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/ref/TecniStamp.Infrastructure.dll differ diff --git a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/refint/TecniStamp.Infrastructure.dll b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/refint/TecniStamp.Infrastructure.dll index 80e94fa..bccaad9 100644 Binary files a/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/refint/TecniStamp.Infrastructure.dll and b/TecniStamp/TecniStamp.Infrastructure/obj/Debug/net8.0/refint/TecniStamp.Infrastructure.dll differ diff --git a/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.dll b/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.dll index e3b4e98..1eafa3b 100644 Binary files a/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.dll and b/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.dll differ diff --git a/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.pdb b/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.pdb index 854747e..cf4d212 100644 Binary files a/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.pdb and b/TecniStamp/TecniStamp.Service/bin/Debug/net8.0/TecniStamp.Service.pdb differ diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfo.cs b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfo.cs index 2da2c4b..a8701b0 100644 --- a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfo.cs +++ b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TecniStamp.Service")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+314cd9eaee3ba473d99f41b9199d0b448a458ada")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+beb458b3b98220358a8f47cc2020191dcc4b34ba")] [assembly: System.Reflection.AssemblyProductAttribute("TecniStamp.Service")] [assembly: System.Reflection.AssemblyTitleAttribute("TecniStamp.Service")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfoInputs.cache b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfoInputs.cache index e042b66..be4ce84 100644 --- a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfoInputs.cache +++ b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.AssemblyInfoInputs.cache @@ -1 +1 @@ -fe612456075fe7d2b8bc2196929fd0613d654602587df6d3a8f94bd0881f0e08 +ba65c508c448b5a6815843aae20990ac912fef5844f0702f938bac30b5700edd diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.csproj.AssemblyReference.cache b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.csproj.AssemblyReference.cache index 9106014..3e77825 100644 Binary files a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.csproj.AssemblyReference.cache and b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.csproj.AssemblyReference.cache differ diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.dll b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.dll index e3b4e98..1eafa3b 100644 Binary files a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.dll and b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.dll differ diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.pdb b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.pdb index 854747e..cf4d212 100644 Binary files a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.pdb and b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/TecniStamp.Service.pdb differ diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/ref/TecniStamp.Service.dll b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/ref/TecniStamp.Service.dll index b728587..d61ba15 100644 Binary files a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/ref/TecniStamp.Service.dll and b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/ref/TecniStamp.Service.dll differ diff --git a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/refint/TecniStamp.Service.dll b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/refint/TecniStamp.Service.dll index b728587..d61ba15 100644 Binary files a/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/refint/TecniStamp.Service.dll and b/TecniStamp/TecniStamp.Service/obj/Debug/net8.0/refint/TecniStamp.Service.dll differ diff --git a/TecniStamp/TecniStamp/Components/Layout/MainLayout.razor b/TecniStamp/TecniStamp/Components/Layout/MainLayout.razor index e7580eb..d919066 100644 --- a/TecniStamp/TecniStamp/Components/Layout/MainLayout.razor +++ b/TecniStamp/TecniStamp/Components/Layout/MainLayout.razor @@ -1,33 +1,36 @@ @inherits LayoutComponentBase + + +
+ +
+
+
@Body diff --git a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.dll b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.dll index 7d80558..94a5c5d 100644 Binary files a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.dll and b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.dll differ diff --git a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.exe b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.exe index 9f7b4fe..406e830 100644 Binary files a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.exe and b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.exe differ diff --git a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.pdb b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.pdb index c525421..4ad7e47 100644 Binary files a/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.pdb and b/TecniStamp/TecniStamp/bin/Debug/net8.0/TecniStamp.pdb differ diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfo.cs b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfo.cs index 2e7ce14..6e331de 100644 --- a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfo.cs +++ b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TecniStamp")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+314cd9eaee3ba473d99f41b9199d0b448a458ada")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+beb458b3b98220358a8f47cc2020191dcc4b34ba")] [assembly: System.Reflection.AssemblyProductAttribute("TecniStamp")] [assembly: System.Reflection.AssemblyTitleAttribute("TecniStamp")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfoInputs.cache b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfoInputs.cache index 3c774c7..4042e1a 100644 --- a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfoInputs.cache +++ b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.AssemblyInfoInputs.cache @@ -1 +1 @@ -256c08859c76d0ad37b687b6fc285fc502f575ed65c6f504adb5700405fd1dba +be8ea926981cd28f572c4b6249ed6a3a47ec7dc62764a1f8b026143a6a19884f diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.dll b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.dll index 7d80558..94a5c5d 100644 Binary files a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.dll and b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.dll differ diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.pdb b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.pdb index c525421..4ad7e47 100644 Binary files a/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.pdb and b/TecniStamp/TecniStamp/obj/Debug/net8.0/TecniStamp.pdb differ diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/apphost.exe b/TecniStamp/TecniStamp/obj/Debug/net8.0/apphost.exe index 9f7b4fe..406e830 100644 Binary files a/TecniStamp/TecniStamp/obj/Debug/net8.0/apphost.exe and b/TecniStamp/TecniStamp/obj/Debug/net8.0/apphost.exe differ diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/ref/TecniStamp.dll b/TecniStamp/TecniStamp/obj/Debug/net8.0/ref/TecniStamp.dll index 197104f..680f72a 100644 Binary files a/TecniStamp/TecniStamp/obj/Debug/net8.0/ref/TecniStamp.dll and b/TecniStamp/TecniStamp/obj/Debug/net8.0/ref/TecniStamp.dll differ diff --git a/TecniStamp/TecniStamp/obj/Debug/net8.0/refint/TecniStamp.dll b/TecniStamp/TecniStamp/obj/Debug/net8.0/refint/TecniStamp.dll index 197104f..680f72a 100644 Binary files a/TecniStamp/TecniStamp/obj/Debug/net8.0/refint/TecniStamp.dll and b/TecniStamp/TecniStamp/obj/Debug/net8.0/refint/TecniStamp.dll differ