Permessi_Parziale

This commit is contained in:
2025-12-17 08:55:21 +01:00
parent 8628025291
commit 18e39cc6a1
15 changed files with 191 additions and 38 deletions

View File

@ -16,11 +16,13 @@ public class StandManagerDbContext : OAServiceContext
public DbSet<Evento> Evento { get; set; }
public DbSet<InvitoEvento> InvitoEvento { get; set; }
public DbSet<IscrizioneEvento> IscrizioneEvento { get; set; }
public DbSet<Permission> Permission { get; set; }
public DbSet<Referente> Referente { get; set; }
public DbSet<Ruolo> Ruolo { get; set; }
public DbSet<Sezione> Sezione { get; set; }
public DbSet<TipologiaCliente> TipologiaCliente { get; set; }
public DbSet<Utente> Utente { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
base.OnConfiguring(optionsBuilder);
@ -29,6 +31,5 @@ public class StandManagerDbContext : OAServiceContext
{
optionsBuilder.UseSqlServer("Data Source=192.168.0.233\\SQL2019;Initial Catalog=DAC_StandManager;Persist Security Info=True;User ID=dac_user;Password=KZ4ZrUPzJV;TrustServerCertificate=True");
}
}
}