marco
This commit is contained in:
parent
e6381d2367
commit
b1d5c6b547
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -3,6 +3,6 @@
|
||||
<PropertyGroup>
|
||||
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
|
||||
<Controller_SelectedScaffolderCategoryPath>root/Common/MVC/Controller</Controller_SelectedScaffolderCategoryPath>
|
||||
<NameOfLastUsedPublishProfile>C:\SORGENTI\ApiPolo\ApiPolo\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||
<NameOfLastUsedPublishProfile>C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
20
ApiPolo/Models/CC_CI.cs
Normal file
20
ApiPolo/Models/CC_CI.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ApiPolo.Models
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class CC_CI
|
||||
{
|
||||
/// <summary>codice azienda </summary>
|
||||
[Key]
|
||||
public string? picodazi { get; set; }
|
||||
|
||||
/// <summary>codice di chiusura</summary>
|
||||
[Key]
|
||||
public string? picodchi { get; set; }
|
||||
|
||||
/// <summary>codice intervento</summary>
|
||||
[Key]
|
||||
public string? picodint { get; set; }
|
||||
}
|
||||
}
|
||||
@ -26,6 +26,10 @@ namespace ApiPolo.Models
|
||||
|
||||
/// <summary>Descrizione supplementare da mettere sul rapportino</summary>
|
||||
public string? ccdessup { get; set; }
|
||||
|
||||
/// <summary>Contiena la lista di tipologie di manutenzione associate a quel codice</summary>
|
||||
public List<string>? tipologieMan { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
22
ApiPolo/Models/CommessaDesc.cs
Normal file
22
ApiPolo/Models/CommessaDesc.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ApiPolo.Models
|
||||
{
|
||||
/// <summary>Descrizione commessa per SIET</summary>
|
||||
public class CommessaDesc
|
||||
{
|
||||
/// <summary>seriale Commessa</summary>
|
||||
[Key]
|
||||
public string? laserial { get; set; }
|
||||
|
||||
/// <summary>tipo lavorazione</summary>
|
||||
[Key]
|
||||
public string? latiplav { get; set; }
|
||||
|
||||
/// <summary>centro di costo - ticket</summary>
|
||||
public string? lacodcen { get; set; }
|
||||
|
||||
/// <summary>Codice commessa</summary>
|
||||
public string? lacodcom { get; set; }
|
||||
}
|
||||
}
|
||||
27
ApiPolo/Models/Discovery_dbcontext/DISCO_CC_CI_DbContext.cs
Normal file
27
ApiPolo/Models/Discovery_dbcontext/DISCO_CC_CI_DbContext.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Discovery_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class DISCO_CC_CI_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<CC_CI>? ccci { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public DISCO_CC_CI_DbContext(DbContextOptions<DISCO_CC_CI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<CC_CI>().ToTable("PIASSCHIU");
|
||||
modelBuilder.Entity<CC_CI>().HasKey(table => new
|
||||
{
|
||||
table.picodazi,
|
||||
table.picodint,
|
||||
table.picodchi
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_AZIENDARIF_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<AziendaRif>? Azi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_AZIENDARIF_DbContext(DbContextOptions<LIFT_WEB_AZIENDARIF_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<AziendaRif>().ToTable("PIAZIRIF");
|
||||
modelBuilder.Entity<AziendaRif>().HasKey(table => new
|
||||
{
|
||||
table.piazihoc,
|
||||
table.picodtec,
|
||||
table.pirifazi
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CAUS_RAPPDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Caus_Rapp>? Causali { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CAUS_RAPPDbContext(DbContextOptions<LIFT_WEB_CAUS_RAPPDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Caus_Rapp>().ToView("API_CAUS_RAPP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CHIAMATA_PROG_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prog>? Progressivi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CHIAMATA_PROG_DbContext(DbContextOptions<LIFT_WEB_CHIAMATA_PROG_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prog>().ToTable("cpwarn");
|
||||
modelBuilder.Entity<Prog>().HasKey(table => new {
|
||||
table.tablecode,
|
||||
table.warncode
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CHIAMATEDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Chiamate>? Chiamate { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CHIAMATEDbContext(DbContextOptions<LIFT_WEB_CHIAMATEDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Chiamate>().ToView("API_CHIAMATE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CHIAMATE_TABLE_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<ChiamateTable>? Chi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CHIAMATE_TABLE_DbContext(DbContextOptions<LIFT_WEB_CHIAMATE_TABLE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamateTable>().ToTable("CHIAMATE");
|
||||
modelBuilder.Entity<ChiamateTable>().HasKey(table => new {
|
||||
table.chcodazi,
|
||||
table.chserial
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CHIUSUREDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Chiusure>? Chiusure { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CHIUSUREDbContext(DbContextOptions<LIFT_WEB_CHIUSUREDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Chiusure>().ToView("API_CHIUSURE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CLIENTIDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Anag>? Clienti { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CLIENTIDbContext(DbContextOptions<LIFT_WEB_CLIENTIDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Anag>().ToView("API_CLIENTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
using ApiPolo.Models.Sicilia_dbcontext;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_COMMESSEDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Commessa>? Commesse { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_COMMESSEDbContext(DbContextOptions<LIFT_WEB_COMMESSEDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Commessa>().ToView("API_COMMESSE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_COMPO_IMPIADbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Compo_Impia>? Componen { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_COMPO_IMPIADbContext(DbContextOptions<LIFT_WEB_COMPO_IMPIADbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Compo_Impia>().ToView("API_MICOMIMP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_COMPO_IMPIA_TABLEDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Compo_Impia_Table>? Componen { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_COMPO_IMPIA_TABLEDbContext(DbContextOptions<LIFT_WEB_COMPO_IMPIA_TABLEDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Compo_Impia_Table>().ToTable("DEMOMICOMIMP");
|
||||
modelBuilder.Entity<Compo_Impia_Table>().HasKey(table => new
|
||||
{
|
||||
table.cocodimp,
|
||||
table.cprownum,
|
||||
table.cocodazi
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_CPWARN_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prog2>? Progressivi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_CPWARN_DbContext(DbContextOptions<LIFT_WEB_CPWARN_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prog2>().ToTable("cpwarn");
|
||||
modelBuilder.Entity<Prog2>().HasKey(table => new {
|
||||
table.tablecode,
|
||||
table.warncode
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_IMPIANTIDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Impianto>? Impia { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_IMPIANTIDbContext(DbContextOptions<LIFT_WEB_IMPIANTIDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Impianto>().ToView("API_IMPIANTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_MAGAZZINIDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Magazzini>? Magaz { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_MAGAZZINIDbContext(DbContextOptions<LIFT_WEB_MAGAZZINIDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Magazzini>().ToTable("DEMOMAGAZZIN");
|
||||
modelBuilder.Entity<Magazzini>().HasKey(table => new
|
||||
{
|
||||
table.mgcodmag
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_MAG_NEWDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Mag_New>? Mag { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_MAG_NEWDbContext(DbContextOptions<LIFT_WEB_MAG_NEWDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Mag_New>().ToTable("DEMOMAG_NEW");
|
||||
modelBuilder.Entity<Mag_New>().HasKey(table => new
|
||||
{
|
||||
table.seriale_rapportino,
|
||||
table.riga
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_MANPROG_TECDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Manprog>? Manutenzioni { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_MANPROG_TECDbContext(DbContextOptions<LIFT_WEB_MANPROG_TECDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Manprog>().ToView("API_MANPROG");
|
||||
}
|
||||
}
|
||||
}
|
||||
23
ApiPolo/Models/Lift_web_dbcontext/LIFT_WEB_PAGAMDbContext.cs
Normal file
23
ApiPolo/Models/Lift_web_dbcontext/LIFT_WEB_PAGAMDbContext.cs
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_PAGAMDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Pagam>? Pagamenti { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_PAGAMDbContext(DbContextOptions<LIFT_WEB_PAGAMDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Pagam>().ToView("API_PAGAMENTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
28
ApiPolo/Models/Lift_web_dbcontext/LIFT_WEB_PRESEDbContext.cs
Normal file
28
ApiPolo/Models/Lift_web_dbcontext/LIFT_WEB_PRESEDbContext.cs
Normal file
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_PRESEDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prese>? Prese { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_PRESEDbContext(DbContextOptions<LIFT_WEB_PRESEDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prese>().ToTable("PRESA");
|
||||
modelBuilder.Entity<Prese>().HasKey(table => new {
|
||||
table.picodazi,
|
||||
table.pimpianto,
|
||||
table.picodint,
|
||||
table.pidatman
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary>Rapportini</summary>
|
||||
public class LIFT_WEB_RAPPORTINIDbContext : DbContext
|
||||
{
|
||||
/// <summary>Rapportini</summary>
|
||||
public DbSet<Rappmast>? rapp { get; set; }
|
||||
|
||||
/// <summary>ConfigurazioniDbContext</summary>
|
||||
public LIFT_WEB_RAPPORTINIDbContext(DbContextOptions<LIFT_WEB_RAPPORTINIDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary>OnModelCreating</summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Rappmast>().ToView("API_RAPPORTINI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_RAPP_NEWDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Rapp_New>? Rapps { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_RAPP_NEWDbContext(DbContextOptions<LIFT_WEB_RAPP_NEWDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Rapp_New>().ToTable("RAPP_NEW");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_SALDIARTDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Saldiart>? Saldi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_SALDIARTDbContext(DbContextOptions<LIFT_WEB_SALDIARTDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Saldiart>().ToView("API_SALDIART_PREZZI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_SOSTITUZIONI_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sostituzione>? Sost { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_SOSTITUZIONI_DbContext(DbContextOptions<LIFT_WEB_SOSTITUZIONI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sostituzione>().ToView("API_SOSTITUZIONI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_STO_IMPDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sto_Imp>? StoImp { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_STO_IMPDbContext(DbContextOptions<LIFT_WEB_STO_IMPDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sto_Imp>().ToView("API_STO_IMP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_STO_RAPPDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sto_Rapp>? StoRapp { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_STO_RAPPDbContext(DbContextOptions<LIFT_WEB_STO_RAPPDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sto_Rapp>().ToView("API_STO_RAPP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_TECNICIDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Tecnici>? Tecnici { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_TECNICIDbContext(DbContextOptions<LIFT_WEB_TECNICIDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Tecnici>().ToView("API_TECNICI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Lift_web_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class LIFT_WEB_TIMBRATUREDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Timbratura>? Timbr { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public LIFT_WEB_TIMBRATUREDbContext(DbContextOptions<LIFT_WEB_TIMBRATUREDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Timbratura>().ToTable("TIMBRATURE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -37,5 +37,96 @@ namespace ApiPolo.Models
|
||||
/// Data rapportino
|
||||
/// </summary>
|
||||
public DateTime? data_rapportino { get; set; }
|
||||
|
||||
/// <summary>Codice Cliente</summary>
|
||||
public string? ancodice { get; set; }
|
||||
|
||||
/// <summary>Ragione Sociale</summary>
|
||||
public string? andescri { get; set; }
|
||||
|
||||
/// <summary>ora inizio rapportino</summary>
|
||||
public string? ora_ini_rapportino { get; set; }
|
||||
|
||||
/// <summary>ora inizio rapportino</summary>
|
||||
public string? ora_fin_rapportino { get; set; }
|
||||
|
||||
/// <summary>min inizio rapportino</summary>
|
||||
public string? min_ini_rapportino { get; set; }
|
||||
|
||||
/// <summary>min inizio rapportino</summary>
|
||||
public string? min_fin_rapportino { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 1</summary>
|
||||
public string? codice_chiusura_1 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 2</summary>
|
||||
public string? codice_chiusura_2 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 3</summary>
|
||||
public string? codice_chiusura_3 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 4</summary>
|
||||
public string? codice_chiusura_4 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 5</summary>
|
||||
public string? codice_chiusura_5 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 6</summary>
|
||||
public string? codice_chiusura_6 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 7</summary>
|
||||
public string? codice_chiusura_7 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 8</summary>
|
||||
public string? codice_chiusura_8 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 9</summary>
|
||||
public string? codice_chiusura_9 { get; set; }
|
||||
|
||||
/// <summary>codice chiusura 10</summary>
|
||||
public string? codice_chiusura_10 { get; set; }
|
||||
|
||||
/// <summary>descrizione int</summary>
|
||||
public string? descrizione_intervento { get; set; }
|
||||
|
||||
/// <summary>tecnico</summary>
|
||||
public string? codice_tecnico { get; set; }
|
||||
|
||||
/// <summary>firma</summary>
|
||||
public string? firma { get; set; }
|
||||
|
||||
/// <summary>cod intervento</summary>
|
||||
public string? codice_intervento { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public string? note_intervento { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? ore_lavoro { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? materiale { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? diritto_chiamata { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? manodopera { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? spese_viaggio { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
|
||||
public decimal? anticipo { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(9, 2)")]
|
||||
public decimal? totale { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -51,5 +51,16 @@ namespace ApiPolo.Models
|
||||
/// <summary>Token registrazione</summary>
|
||||
public string? Token { get; set; }
|
||||
|
||||
/// <summary>Form registrazione: check 1</summary>
|
||||
public bool privacy1 { get; set; }
|
||||
|
||||
/// <summary>Form registrazione: check 2</summary>
|
||||
public bool privacy2 { get; set; }
|
||||
|
||||
/// <summary>Form registrazione: check 3</summary>
|
||||
public bool privacy3 { get; set; }
|
||||
|
||||
/// <summary>Form registrazione: check 4</summary>
|
||||
public bool privacy4 { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,21 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CAUS_RAPP_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Caus_Rapp>? Causali { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CAUS_RAPP_DbContext(DbContextOptions<SECURITY_CAUS_RAPP_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Caus_Rapp>().ToView("API_CAUS_RAPP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CHIAMATA_PROG_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prog>? Progressivi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CHIAMATA_PROG_DbContext(DbContextOptions<SECURITY_CHIAMATA_PROG_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prog>().ToTable("cpwarn");
|
||||
modelBuilder.Entity<Prog>().HasKey(table => new {
|
||||
table.tablecode,
|
||||
table.warncode
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CHIAMATA_SERIALE_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<ChiamataSeriale>? Seriali { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CHIAMATA_SERIALE_DbContext(DbContextOptions<SECURITY_CHIAMATA_SERIALE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamataSeriale>().ToTable("LABSEPINUMCHI");
|
||||
modelBuilder.Entity<ChiamataSeriale>().HasKey(table => new {
|
||||
table.piditta
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CHIAMATEDbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Chiamate>? Chiamate { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CHIAMATEDbContext(DbContextOptions<SECURITY_CHIAMATEDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Chiamate>().ToView("API_CHIAMATE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CHIAMATE_TABLE_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<ChiamateTable>? Chi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CHIAMATE_TABLE_DbContext(DbContextOptions<SECURITY_CHIAMATE_TABLE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamateTable>().ToTable("CHIAMATE");
|
||||
modelBuilder.Entity<ChiamateTable>().HasKey(table => new {
|
||||
table.chcodazi,
|
||||
table.chserial
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CHIUSURE_DbContext: DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Chiusure>? Chiusure { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CHIUSURE_DbContext(DbContextOptions<SECURITY_CHIUSURE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Chiusure>().ToView("API_CHIUSURE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CLIENTI_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Anag>? Clienti { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CLIENTI_DbContext(DbContextOptions<SECURITY_CLIENTI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Anag>().ToView("API_CLIENTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_COMMESSE_DbContext :DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Commessa>? Commesse { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_COMMESSE_DbContext(DbContextOptions<SECURITY_COMMESSE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Commessa>().ToView("API_COMMESSE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_COMPO_IMPIA_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Compo_Impia>? Componen { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_COMPO_IMPIA_DbContext(DbContextOptions<SECURITY_COMPO_IMPIA_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Compo_Impia>().ToView("API_MICOMIMP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_COMPO_IMPIA_TABLE_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Compo_Impia_Table>? Componen { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_COMPO_IMPIA_TABLE_DbContext(DbContextOptions<SECURITY_COMPO_IMPIA_TABLE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Compo_Impia_Table>().ToTable("LABSEMICOMIMP");
|
||||
modelBuilder.Entity<Compo_Impia_Table>().HasKey(table => new
|
||||
{
|
||||
table.cocodimp,
|
||||
table.cprownum,
|
||||
table.cocodazi
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_CPWARN_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prog2>? Progressivi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_CPWARN_DbContext(DbContextOptions<SECURITY_CPWARN_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prog2>().ToTable("cpwarn");
|
||||
modelBuilder.Entity<Prog2>().HasKey(table => new {
|
||||
table.tablecode,
|
||||
table.warncode
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_IMPIANTI_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Impianto>? Impia { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_IMPIANTI_DbContext(DbContextOptions<SECURITY_IMPIANTI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Impianto>().ToView("API_IMPIANTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_MAGAZZINI_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Magazzini>? Magaz { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_MAGAZZINI_DbContext(DbContextOptions<SECURITY_MAGAZZINI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Magazzini>().ToTable("LABSEMAGAZZIN");
|
||||
modelBuilder.Entity<Magazzini>().HasKey(table => new
|
||||
{
|
||||
table.mgcodmag
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_MAG_NEW_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Mag_New>? Mag { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_MAG_NEW_DbContext(DbContextOptions<SECURITY_MAG_NEW_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Mag_New>().ToTable("LABSEMAG_NEW");
|
||||
modelBuilder.Entity<Mag_New>().HasKey(table => new
|
||||
{
|
||||
table.seriale_rapportino,
|
||||
table.riga
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_MANPROG_TECDbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Manprog>? Manutenzioni { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_MANPROG_TECDbContext(DbContextOptions<SECURITY_MANPROG_TECDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Manprog>().ToView("API_MANPROG");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_PAGAM_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Pagam>? Pagamenti { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_PAGAM_DbContext(DbContextOptions<SECURITY_PAGAM_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Pagam>().ToView("API_PAGAMENTI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_PRESE_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Prese>? Prese { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_PRESE_DbContext(DbContextOptions<SECURITY_PRESE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Prese>().ToTable("PRESA");
|
||||
modelBuilder.Entity<Prese>().HasKey(table => new {
|
||||
table.picodazi,
|
||||
table.pimpianto,
|
||||
table.picodint,
|
||||
table.pidatman
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary>Rapportini</summary>
|
||||
public class SECURITY_RAPPORTINI_DbContext:DbContext
|
||||
{
|
||||
/// <summary>Rapportini</summary>
|
||||
public DbSet<Rappmast>? rapp { get; set; }
|
||||
|
||||
/// <summary>ConfigurazioniDbContext</summary>
|
||||
public SECURITY_RAPPORTINI_DbContext(DbContextOptions<SECURITY_RAPPORTINI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary>OnModelCreating</summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Rappmast>().ToView("API_RAPPORTINI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_RAPP_NEW_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Rapp_New>? Rapps { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_RAPP_NEW_DbContext(DbContextOptions<SECURITY_RAPP_NEW_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Rapp_New>().ToTable("RAPP_NEW");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_SALDIART_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Saldiart>? Saldi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_SALDIART_DbContext(DbContextOptions<SECURITY_SALDIART_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Saldiart>().ToView("API_SALDIART_PREZZI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_SOSTITUZIONI_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sostituzione>? Sost { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_SOSTITUZIONI_DbContext(DbContextOptions<SECURITY_SOSTITUZIONI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sostituzione>().ToView("API_SOSTITUZIONI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_STO_IMP_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sto_Imp>? StoImp { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_STO_IMP_DbContext(DbContextOptions<SECURITY_STO_IMP_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sto_Imp>().ToView("API_STO_IMP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_STO_RAPPDbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sto_Rapp>? StoRapp { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_STO_RAPPDbContext(DbContextOptions<SECURITY_STO_RAPPDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sto_Rapp>().ToView("API_STO_RAPP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_TECNICI_DbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Tecnici>? Tecnici { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_TECNICI_DbContext(DbContextOptions<SECURITY_TECNICI_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Tecnici>().ToView("API_TECNICI");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Security_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SECURITY_TIMBRATUREDbContext:DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Timbratura>? Timbr { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SECURITY_TIMBRATUREDbContext(DbContextOptions<SECURITY_TIMBRATUREDbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Timbratura>().ToTable("TIMBRATURE");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Siet_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class SIET_COMMESSE_DESC_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<CommessaDesc>? Commdesc { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public SIET_COMMESSE_DESC_DbContext(DbContextOptions<SIET_COMMESSE_DESC_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<CommessaDesc>().ToTable("SIET2LAV_MAST");
|
||||
modelBuilder.Entity<CommessaDesc>().HasKey(table => new {
|
||||
table.laserial,
|
||||
table.latiplav
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -16,7 +16,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamataSeriale>().ToTable("LABSEPINUMCHI");
|
||||
modelBuilder.Entity<ChiamataSeriale>().ToTable("TEDESPINUMCHI");
|
||||
modelBuilder.Entity<ChiamataSeriale>().HasKey(table => new {
|
||||
table.piditta
|
||||
});
|
||||
|
||||
@ -7,7 +7,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
public class TEDES_CHIAMATE_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<ChiamateTable>? Chi { get; set; }
|
||||
public DbSet<Chiamate>? Chiamate { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public TEDES_CHIAMATE_DbContext(DbContextOptions<TEDES_CHIAMATE_DbContext> options) : base(options)
|
||||
@ -17,11 +17,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamateTable>().ToTable("CHIAMATE");
|
||||
modelBuilder.Entity<ChiamateTable>().HasKey(table => new {
|
||||
table.chcodazi,
|
||||
table.chserial
|
||||
});
|
||||
modelBuilder.Entity<Chiamate>().ToView("API_CHIAMATE");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,27 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class TEDES_CHIAMATE_TABLE_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<ChiamateTable>? Chi { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public TEDES_CHIAMATE_TABLE_DbContext(DbContextOptions<TEDES_CHIAMATE_TABLE_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<ChiamateTable>().ToTable("CHIAMATE");
|
||||
modelBuilder.Entity<ChiamateTable>().HasKey(table => new {
|
||||
table.chcodazi,
|
||||
table.chserial
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -15,7 +15,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Compo_Impia_Table>().ToTable("LABSEMICOMIMP");
|
||||
modelBuilder.Entity<Compo_Impia_Table>().ToTable("TEDESMICOMIMP");
|
||||
modelBuilder.Entity<Compo_Impia_Table>().HasKey(table => new
|
||||
{
|
||||
table.cocodimp,
|
||||
|
||||
@ -16,7 +16,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Magazzini>().ToTable("LABSEMAGAZZIN");
|
||||
modelBuilder.Entity<Magazzini>().ToTable("TEDESMAGAZZIN");
|
||||
modelBuilder.Entity<Magazzini>().HasKey(table => new
|
||||
{
|
||||
table.mgcodmag
|
||||
|
||||
@ -15,7 +15,7 @@ namespace ApiPolo.Models.Tedesco_dbcontext
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Mag_New>().ToTable("LABSEMAG_NEW");
|
||||
modelBuilder.Entity<Mag_New>().ToTable("TEDESMAG_NEW");
|
||||
modelBuilder.Entity<Mag_New>().HasKey(table => new
|
||||
{
|
||||
table.seriale_rapportino,
|
||||
|
||||
23
ApiPolo/Models/VT_dbcontext/VT_STO_RAPP_DbContext.cs
Normal file
23
ApiPolo/Models/VT_dbcontext/VT_STO_RAPP_DbContext.cs
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApiPolo.Models.VT_dbcontext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public class VT_STO_RAPP_DbContext : DbContext
|
||||
{
|
||||
/// <summary></summary>
|
||||
public DbSet<Sto_Rapp>? StoRapp { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
public VT_STO_RAPP_DbContext(DbContextOptions<VT_STO_RAPP_DbContext> options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary></summary>
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Sto_Rapp>().ToView("API_STO_RAPP");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>C:\SORGENTI\_publish</_PublishTargetUrl>
|
||||
<History>True|2024-01-12T14:28:14.3310950Z;True|2024-01-11T12:17:47.0416265+01:00;True|2024-01-09T10:56:10.6108110+01:00;True|2024-01-09T10:01:29.4419062+01:00;True|2024-01-09T09:09:56.0678886+01:00;False|2024-01-09T09:09:34.2552726+01:00;True|2024-01-08T17:12:45.9831372+01:00;True|2024-01-08T14:29:20.6298939+01:00;True|2024-01-05T16:13:20.1834182+01:00;True|2024-01-04T16:37:06.7941235+01:00;True|2023-12-21T17:18:34.0526998+01:00;True|2023-12-21T16:15:05.7983943+01:00;False|2023-12-21T16:14:46.9213541+01:00;True|2023-12-21T15:37:56.3166908+01:00;True|2023-12-21T15:06:45.2960170+01:00;True|2023-12-19T10:07:15.3406839+01:00;True|2023-12-19T09:40:37.4542645+01:00;True|2023-12-18T18:10:38.7733804+01:00;True|2023-12-18T17:52:35.2759182+01:00;True|2023-12-18T17:27:30.6925247+01:00;False|2023-12-18T17:27:18.6654468+01:00;True|2023-12-18T17:19:53.6193809+01:00;True|2023-12-18T11:34:31.9683375+01:00;True|2023-12-18T10:49:14.0195219+01:00;True|2023-12-14T15:24:45.4235825+01:00;True|2023-12-14T12:12:59.2505838+01:00;True|2023-12-14T10:06:03.4821381+01:00;False|2023-12-14T10:05:56.1675464+01:00;True|2023-12-13T17:46:06.5114228+01:00;True|2023-12-13T17:18:32.9967555+01:00;True|2023-12-13T17:09:02.2153382+01:00;True|2023-12-13T16:54:26.3998101+01:00;True|2023-12-12T12:29:15.4496576+01:00;True|2023-12-12T10:07:33.8605887+01:00;True|2023-12-07T16:48:32.3661089+01:00;False|2023-12-07T16:48:16.7800909+01:00;True|2023-12-07T15:59:01.9494614+01:00;True|2023-12-06T16:37:11.4189532+01:00;False|2023-12-06T16:36:58.1903924+01:00;True|2023-12-06T15:04:14.7658513+01:00;True|2023-12-06T15:03:56.8183271+01:00;False|2023-12-06T15:02:43.1658892+01:00;True|2023-12-05T14:56:58.6533793+01:00;True|2023-12-05T11:27:46.7461820+01:00;False|2023-12-05T11:27:33.9312828+01:00;True|2023-12-05T10:50:28.4716173+01:00;True|2023-11-30T16:42:31.8596611+01:00;True|2023-11-30T15:55:03.2495195+01:00;True|2023-11-27T15:56:29.4491507+01:00;True|2023-11-27T12:01:19.1611383+01:00;True|2023-11-24T16:17:46.6740447+01:00;True|2023-11-24T14:45:39.1983088+01:00;True|2023-11-21T12:27:46.1304045+01:00;True|2023-11-20T14:46:36.7367797+01:00;True|2023-11-16T15:24:40.0316829+01:00;True|2023-11-16T11:01:34.3117013+01:00;True|2023-11-16T11:00:55.7387444+01:00;True|2023-11-14T09:11:56.7615009+01:00;True|2023-11-09T09:52:23.5464533+01:00;True|2023-11-07T16:06:54.6961557+01:00;False|2023-11-07T16:06:44.9066723+01:00;True|2023-11-06T12:13:06.8671991+01:00;True|2023-10-26T10:42:14.4857090+02:00;True|2023-10-24T09:42:38.9743258+02:00;True|2023-10-23T17:12:45.9054585+02:00;True|2023-10-23T16:29:52.5174378+02:00;True|2023-10-19T16:09:03.8796311+02:00;True|2023-10-19T15:59:31.4939287+02:00;True|2023-10-19T15:40:14.7096576+02:00;True|2023-10-19T14:56:26.8783257+02:00;True|2023-10-19T14:42:33.0463171+02:00;True|2023-10-17T16:39:01.8740450+02:00;True|2023-10-17T16:33:03.8236421+02:00;False|2023-10-17T16:32:49.7163540+02:00;True|2023-10-17T15:55:56.9396463+02:00;True|2023-10-17T15:38:05.1800302+02:00;True|2023-10-17T12:42:35.7979137+02:00;True|2023-10-13T17:43:19.5350513+02:00;True|2023-10-13T15:09:29.1892333+02:00;True|2023-10-10T10:40:11.4271446+02:00;True|2023-10-10T10:25:36.0756310+02:00;True|2023-10-10T10:12:13.5785443+02:00;True|2023-10-09T18:26:44.2790166+02:00;True|2023-10-09T17:20:03.1205720+02:00;False|2023-10-09T17:19:49.5869638+02:00;True|2023-10-09T16:21:22.1396153+02:00;True|2023-10-09T12:30:29.0785113+02:00;True|2023-10-09T11:51:35.1476417+02:00;True|2023-10-06T15:52:46.5217950+02:00;True|2023-10-05T17:12:51.6409719+02:00;True|2023-10-05T16:57:41.2838348+02:00;True|2023-10-05T15:09:47.2469186+02:00;True|2023-10-05T13:01:26.6213524+02:00;True|2023-10-05T11:28:28.2625915+02:00;True|2023-10-05T10:57:51.2833086+02:00;True|2023-10-05T09:50:51.3238703+02:00;True|2023-10-04T17:49:34.0728040+02:00;True|2023-10-02T11:56:53.6875755+02:00;True|2023-09-29T16:37:01.0471211+02:00;True|2023-09-29T15:24:54.9626631+02:00;</History>
|
||||
<History>True|2024-04-23T12:16:13.9278392Z;True|2024-04-22T11:21:15.8891978+02:00;True|2024-04-19T17:01:58.4424326+02:00;True|2024-04-19T16:00:37.1516625+02:00;True|2024-04-18T17:56:38.4740471+02:00;True|2024-04-18T15:19:13.0301345+02:00;True|2024-04-18T15:08:29.5009047+02:00;True|2024-04-16T17:19:13.2405268+02:00;True|2024-04-16T16:44:53.5665827+02:00;True|2024-04-09T15:05:21.6859040+02:00;True|2024-04-09T12:31:53.7105489+02:00;True|2024-03-29T12:02:59.3951106+01:00;True|2024-03-28T15:51:54.4771087+01:00;True|2024-03-28T15:40:46.5889318+01:00;True|2024-03-28T15:02:39.2709767+01:00;True|2024-03-19T10:11:02.2184437+01:00;True|2024-03-19T09:46:29.5213786+01:00;True|2024-03-13T15:41:36.5129417+01:00;True|2024-03-13T15:04:45.8815190+01:00;True|2024-03-12T12:09:28.7378666+01:00;True|2024-03-07T16:49:05.8765453+01:00;True|2024-03-07T15:04:48.6785344+01:00;True|2024-03-05T18:12:38.1587810+01:00;True|2024-03-05T17:04:25.2897417+01:00;True|2024-02-23T17:51:33.5228272+01:00;True|2024-02-23T15:30:52.3064822+01:00;True|2024-02-21T17:45:19.5871889+01:00;True|2024-02-16T14:49:42.6218309+01:00;True|2024-01-12T15:28:14.3310950+01:00;True|2024-01-11T12:17:47.0416265+01:00;True|2024-01-09T10:56:10.6108110+01:00;True|2024-01-09T10:01:29.4419062+01:00;True|2024-01-09T09:09:56.0678886+01:00;False|2024-01-09T09:09:34.2552726+01:00;True|2024-01-08T17:12:45.9831372+01:00;True|2024-01-08T14:29:20.6298939+01:00;True|2024-01-05T16:13:20.1834182+01:00;True|2024-01-04T16:37:06.7941235+01:00;True|2023-12-21T17:18:34.0526998+01:00;True|2023-12-21T16:15:05.7983943+01:00;False|2023-12-21T16:14:46.9213541+01:00;True|2023-12-21T15:37:56.3166908+01:00;True|2023-12-21T15:06:45.2960170+01:00;True|2023-12-19T10:07:15.3406839+01:00;True|2023-12-19T09:40:37.4542645+01:00;True|2023-12-18T18:10:38.7733804+01:00;True|2023-12-18T17:52:35.2759182+01:00;True|2023-12-18T17:27:30.6925247+01:00;False|2023-12-18T17:27:18.6654468+01:00;True|2023-12-18T17:19:53.6193809+01:00;True|2023-12-18T11:34:31.9683375+01:00;True|2023-12-18T10:49:14.0195219+01:00;True|2023-12-14T15:24:45.4235825+01:00;True|2023-12-14T12:12:59.2505838+01:00;True|2023-12-14T10:06:03.4821381+01:00;False|2023-12-14T10:05:56.1675464+01:00;True|2023-12-13T17:46:06.5114228+01:00;True|2023-12-13T17:18:32.9967555+01:00;True|2023-12-13T17:09:02.2153382+01:00;True|2023-12-13T16:54:26.3998101+01:00;True|2023-12-12T12:29:15.4496576+01:00;True|2023-12-12T10:07:33.8605887+01:00;True|2023-12-07T16:48:32.3661089+01:00;False|2023-12-07T16:48:16.7800909+01:00;True|2023-12-07T15:59:01.9494614+01:00;True|2023-12-06T16:37:11.4189532+01:00;False|2023-12-06T16:36:58.1903924+01:00;True|2023-12-06T15:04:14.7658513+01:00;True|2023-12-06T15:03:56.8183271+01:00;False|2023-12-06T15:02:43.1658892+01:00;True|2023-12-05T14:56:58.6533793+01:00;True|2023-12-05T11:27:46.7461820+01:00;False|2023-12-05T11:27:33.9312828+01:00;True|2023-12-05T10:50:28.4716173+01:00;True|2023-11-30T16:42:31.8596611+01:00;True|2023-11-30T15:55:03.2495195+01:00;True|2023-11-27T15:56:29.4491507+01:00;True|2023-11-27T12:01:19.1611383+01:00;True|2023-11-24T16:17:46.6740447+01:00;True|2023-11-24T14:45:39.1983088+01:00;True|2023-11-21T12:27:46.1304045+01:00;True|2023-11-20T14:46:36.7367797+01:00;True|2023-11-16T15:24:40.0316829+01:00;True|2023-11-16T11:01:34.3117013+01:00;True|2023-11-16T11:00:55.7387444+01:00;True|2023-11-14T09:11:56.7615009+01:00;True|2023-11-09T09:52:23.5464533+01:00;True|2023-11-07T16:06:54.6961557+01:00;False|2023-11-07T16:06:44.9066723+01:00;True|2023-11-06T12:13:06.8671991+01:00;True|2023-10-26T10:42:14.4857090+02:00;True|2023-10-24T09:42:38.9743258+02:00;True|2023-10-23T17:12:45.9054585+02:00;True|2023-10-23T16:29:52.5174378+02:00;True|2023-10-19T16:09:03.8796311+02:00;True|2023-10-19T15:59:31.4939287+02:00;True|2023-10-19T15:40:14.7096576+02:00;True|2023-10-19T14:56:26.8783257+02:00;True|2023-10-19T14:42:33.0463171+02:00;True|2023-10-17T16:39:01.8740450+02:00;</History>
|
||||
<LastFailureDetails />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@ -14,6 +14,7 @@ using ApiPolo.Models.Siet_dbcontext;
|
||||
using ApiPolo.Models.PMS_dbcontext;
|
||||
using ApiPolo.Models.VT_dbcontext;
|
||||
using ApiPolo.Models.Tedesco_dbcontext;
|
||||
using ApiPolo.Models.Lift_web_dbcontext;
|
||||
|
||||
namespace ApiPolo
|
||||
{
|
||||
@ -301,6 +302,9 @@ namespace ApiPolo
|
||||
services.AddDbContext<DISCO_SOSTITUZIONIDbcontext>(options => options.UseSqlServer(Configuration.GetConnectionString("DISCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<DISCO_CC_CI_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("DISCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
#endregion
|
||||
|
||||
#region SAROM
|
||||
@ -534,6 +538,9 @@ namespace ApiPolo
|
||||
services.AddDbContext<SIET_CPWARN_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SIET2")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<SIET_COMMESSE_DESC_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SIET2")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
#endregion
|
||||
|
||||
#region PMS
|
||||
@ -708,6 +715,170 @@ namespace ApiPolo
|
||||
services.AddDbContext<VT_Buoni_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("VIRTUAL_TASK")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<VT_STO_RAPP_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("VIRTUAL_TASK")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
#endregion
|
||||
|
||||
#region LIFT_WEB
|
||||
services.AddDbContext<LIFT_WEB_CHIAMATEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_CHIUSUREDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_TECNICIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_RAPP_NEWDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_MANPROG_TECDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_COMPO_IMPIADbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_SALDIARTDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_COMPO_IMPIA_TABLEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_MAG_NEWDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_MAGAZZINIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_STO_RAPPDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_CLIENTIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_CAUS_RAPPDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_PAGAMDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_PRESEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_COMMESSEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_TIMBRATUREDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_RAPPORTINIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_STO_IMPDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_IMPIANTIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_SOSTITUZIONI_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
|
||||
|
||||
services.AddDbContext<LIFT_WEB_AZIENDARIF_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_CHIAMATA_PROG_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
|
||||
|
||||
services.AddDbContext<LIFT_WEB_CHIAMATE_TABLE_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<LIFT_WEB_CPWARN_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("SICILIA")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
#endregion
|
||||
|
||||
#region TEDESCO
|
||||
services.AddDbContext<TEDES_CHIAMATE_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CHIUSUREDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_TECNICIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_RAPP_NEWDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_MANPROG_TECDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_COMPO_IMPIADbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_SALDIARTDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_COMPO_IMPIA_TABLEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_MAG_NEWDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_MAGAZZINIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_STO_RAPPDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CLIENTIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CAUS_RAPP_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_PAGAMDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_PRESEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_COMMESSEDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_TIMBRATUREDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_RAPPORTINIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_STO_IMPDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_IMPIANTIDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_SOSTITUZIONI_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_AZIENDA_RIF_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CHIAMATA_PROG_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CHIAMATE_TABLE_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
services.AddDbContext<TEDES_CPWARN_DbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("TEDESCO")
|
||||
, options => { options.CommandTimeout(commandTimeoutInSeconds); }
|
||||
));
|
||||
|
||||
#endregion
|
||||
|
||||
services.AddSwaggerGen(gen =>
|
||||
@ -718,7 +889,7 @@ namespace ApiPolo
|
||||
DateTime oggi = DateTime.Now;
|
||||
string dt = oggi.ToString();
|
||||
//gen.SwaggerDoc("v1", new OpenApiInfo { Title = "POLO API TEST - v.app 1.13", Version = dt });
|
||||
gen.SwaggerDoc("v1", new OpenApiInfo { Title = "POLO API - v.app 1.14", Version = dt });
|
||||
gen.SwaggerDoc("v1", new OpenApiInfo { Title = "POLO API - v.app 1.23", Version = dt });
|
||||
|
||||
var filePath = Path.Combine(System.AppContext.BaseDirectory, "ApiPolo.xml");
|
||||
gen.IncludeXmlComments(filePath);
|
||||
@ -731,6 +902,14 @@ namespace ApiPolo
|
||||
//c.CronExpression = @"* * * * *";
|
||||
});
|
||||
|
||||
services.AddLogging(opt =>
|
||||
{
|
||||
opt.AddConsole(c =>
|
||||
{
|
||||
c.TimestampFormat = "[yyyy-MM-dd HH:mm:ss] ";
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
catch (Exception ex) {
|
||||
Console.WriteLine(ex.Message);
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
|
||||
/*"DISCO": "Data Source=10.0.0.10;Initial Catalog=AHR60_FERRARI_VISTE_DISCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
/*"DISCO": "Data Source=37.159.179.14;Initial Catalog=R80_DISCO;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=TEST_APP_NEW;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=DISCOVERY_80;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"SAROM": "Data Source=37.159.179.14;Initial Catalog=AHR60_SAROM_TEST80;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"SAROM": "Data Source=10.0.0.10;Initial Catalog=AHR80_SAROM;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
@ -43,7 +43,9 @@
|
||||
"SIET2": "Data Source=194.50.74.66;Initial Catalog=R65_SIET;User Id=sa; Password=W1ld1x42;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"PMS": "Data Source=10.0.0.10;Initial Catalog=PMS_DEMO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"VIRTUAL_TASK": "Data Source=10.0.0.10;Initial Catalog=VIRTUAL_TASK;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
"VIRTUAL_TASK": "Data Source=10.0.0.10;Initial Catalog=VIRTUAL_TASK;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"LIFT_WEB": "Data Source=10.0.0.79;Initial Catalog= AHRW42_LIFT;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"TEDESCO": "Data Source=MARCO_PC\\SQL_2022;Initial Catalog= AHR_TEDESCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
|
||||
|
||||
},
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
{"ContentRoots":["C:\\SORGENTI\\ApiPolo\\ApiPolo\\wwwroot\\"],"Root":{"Children":{"logo_disco.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_disco.jpg"},"Patterns":null},"logo_ferra.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_ferra.jpg"},"Patterns":null},"logo_marro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_marro.jpg"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
{"ContentRoots":["C:\\Users\\audif\\source\\repos\\ApiManutenzioni\\ApiPolo\\wwwroot\\"],"Root":{"Children":{"logo_disco.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_disco.jpg"},"Patterns":null},"logo_ferra.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_ferra.jpg"},"Patterns":null},"logo_marro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_marro.jpg"},"Patterns":null},"VIRTU":{"Children":{"AZI01":{"Children":{"AZI01_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI01/AZI01_LOGO.jpg"},"Patterns":null}},"Asset":null,"Patterns":null},"AZI02":{"Children":{"AZI02_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/AZI02_LOGO.jpg"},"Patterns":null},"company2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/company2.png"},"Patterns":null},"img2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/img2.png"},"Patterns":null},"No_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/No_image.png"},"Patterns":null},"R.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/R.png"},"Patterns":null}},"Asset":null,"Patterns":null},"CAV00001.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/CAV00001.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
File diff suppressed because one or more lines are too long
@ -10,8 +10,9 @@
|
||||
|
||||
//connessione non sicura: Encrypt=False
|
||||
|
||||
/*"ApiStr": "Data Source=10.0.0.10;Initial Catalog=API_POLO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"ApiStr": "Data Source=10.0.0.10;Initial Catalog=API_POLO2;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"ApiStr": "Data Source=10.0.0.19;Initial Catalog=API_POLO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"ApiStr": "Data Source=10.0.0.10;Initial Catalog=API_POLO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"ApiStr": "Data Source=10.0.0.19;Initial Catalog=API_POLO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
|
||||
/*"FERRA": "Data Source=10.0.0.10;Initial Catalog=AHR60_FERRARI;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"FERRA": "Data Source=37.159.179.14;Initial Catalog=AHR80_TEST;User Id=AppPolo; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Encrypt=False;Trust Server Certificate=True",
|
||||
@ -26,17 +27,26 @@
|
||||
"LIFTA": "Data Source=poloinformatico57.clienti.init-s.it;Initial Catalog=R80_LIFTA;User Id=app; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"LIFTA_MARRO": "Data Source=poloinformatico57.clienti.init-s.it;Initial Catalog=R80_MARROCCO;User Id=app; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"SICILIA": "Data Source=10.0.0.10;Initial Catalog=AHR_SICILIA;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"SICILIA": "Data Source=10.0.0.10;Initial Catalog=AHR_SICILIA;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"SICILIA": "Data Source=studioliuzzo.selfip.net;Initial Catalog=AHR_TEST_APP;User Id=sa; Password=1Zucchetti;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
/*"DISCO": "Data Source=10.0.0.10;Initial Catalog=AHR60_FERRARI_VISTE_DISCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
/*"DISCO": "Data Source=37.159.179.14;Initial Catalog=R80_DISCO;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=TEST_APP_NEW;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=DISCOVERY_80;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"SAROM": "Data Source=37.159.179.14;Initial Catalog=AHR60_SAROM_TEST80;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"SAROM": "Data Source=10.0.0.10;Initial Catalog=AHR80_SAROM;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
|
||||
/*"SINER": "Data Source=10.0.0.10;Initial Catalog=AHR_SINERGO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"*/
|
||||
"SINER": "Data Source=ufficio.sinergogroup.it,31433;Initial Catalog=AHR_TECLI;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
"SINER": "Data Source=ufficio.sinergogroup.it,31433;Initial Catalog=AHR_TECLI;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"SIET2": "Data Source=194.50.74.66;Initial Catalog=R65_SIET;User Id=sa; Password=W1ld1x42;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"PMS": "Data Source=10.0.0.10;Initial Catalog=PMS_DEMO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"VIRTUAL_TASK": "Data Source=10.0.0.10;Initial Catalog=VIRTUAL_TASK;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"LIFT_WEB": "Data Source=10.0.0.79;Initial Catalog= AHRW42_LIFT;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"TEDESCO": "Data Source=MARCO_PC\\SQL_2022;Initial Catalog= AHR_TEDESCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
|
||||
|
||||
},
|
||||
"JWT": {
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
{"ContentRoots":["C:\\SORGENTI\\ApiPolo\\ApiPolo\\wwwroot\\"],"Root":{"Children":{"logo_disco.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_disco.jpg"},"Patterns":null},"logo_ferra.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_ferra.jpg"},"Patterns":null},"logo_marro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_marro.jpg"},"Patterns":null},"VIRTU":{"Children":{"AZI01":{"Children":{"AZI01_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI01/AZI01_LOGO.jpg"},"Patterns":null}},"Asset":null,"Patterns":null},"AZI02":{"Children":{"AZI02_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/AZI02_LOGO.jpg"},"Patterns":null},"company2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/company2.png"},"Patterns":null},"R.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/R.png"},"Patterns":null}},"Asset":null,"Patterns":null},"CAV00001.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/CAV00001.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
{"ContentRoots":["C:\\Users\\audif\\source\\repos\\ApiManutenzioni\\ApiPolo\\wwwroot\\"],"Root":{"Children":{"logo_disco.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_disco.jpg"},"Patterns":null},"logo_ferra.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_ferra.jpg"},"Patterns":null},"logo_marro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"logo_marro.jpg"},"Patterns":null},"VIRTU":{"Children":{"AZI01":{"Children":{"AZI01_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI01/AZI01_LOGO.jpg"},"Patterns":null}},"Asset":null,"Patterns":null},"AZI02":{"Children":{"AZI02_LOGO.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/AZI02_LOGO.jpg"},"Patterns":null},"company2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/company2.png"},"Patterns":null},"img2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/img2.png"},"Patterns":null},"No_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/No_image.png"},"Patterns":null},"R.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/AZI02/R.png"},"Patterns":null}},"Asset":null,"Patterns":null},"CAV00001.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"VIRTU/CAV00001.jpg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
File diff suppressed because one or more lines are too long
@ -32,7 +32,7 @@
|
||||
|
||||
/*"DISCO": "Data Source=10.0.0.10;Initial Catalog=AHR60_FERRARI_VISTE_DISCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
/*"DISCO": "Data Source=37.159.179.14;Initial Catalog=R80_DISCO;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=TEST_APP_NEW;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"DISCO": "Data Source=discoverylift.dyndns.org;Initial Catalog=DISCOVERY_80;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"SAROM": "Data Source=37.159.179.14;Initial Catalog=AHR60_SAROM_TEST80;User Id=sa; Password=Poloinf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
/*"SAROM": "Data Source=10.0.0.10;Initial Catalog=AHR80_SAROM;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",*/
|
||||
@ -43,7 +43,9 @@
|
||||
"SIET2": "Data Source=194.50.74.66;Initial Catalog=R65_SIET;User Id=sa; Password=W1ld1x42;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
|
||||
"PMS": "Data Source=10.0.0.10;Initial Catalog=PMS_DEMO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"VIRTUAL_TASK": "Data Source=10.0.0.10;Initial Catalog=VIRTUAL_TASK;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
"VIRTUAL_TASK": "Data Source=10.0.0.10;Initial Catalog=VIRTUAL_TASK;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"LIFT_WEB": "Data Source=10.0.0.79;Initial Catalog= AHRW42_LIFT;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
|
||||
"TEDESCO": "Data Source=MARCO_PC\\SQL_2022;Initial Catalog= AHR_TEDESCO;User Id=sa; Password=p0l01nf.;Integrated Security=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
|
||||
|
||||
|
||||
},
|
||||
|
||||
@ -9,9 +9,9 @@ build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ApiPolo
|
||||
build_property.RootNamespace = ApiPolo
|
||||
build_property.ProjectDir = C:\SORGENTI\ApiPolo\ApiPolo\
|
||||
build_property.ProjectDir = C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\
|
||||
build_property.RazorLangVersion = 6.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = C:\SORGENTI\ApiPolo\ApiPolo
|
||||
build_property.MSBuildProjectDirectory = C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
079867c601cac49bbe0d426d262e757d8470918f
|
||||
176d63897cfc0614b5bfe24857cce51a153d09d4
|
||||
|
||||
@ -95,3 +95,100 @@ C:\SORGENTI\ApiPolo\ApiPolo\bin\Debug\net6.0\Google.Apis.Core.dll
|
||||
C:\SORGENTI\ApiPolo\ApiPolo\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||
C:\SORGENTI\ApiPolo\ApiPolo\bin\Debug\net6.0\Newtonsoft.Json.dll
|
||||
C:\SORGENTI\ApiPolo\ApiPolo\bin\Debug\net6.0\Cronos.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\appsettings.Development.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\private_key.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\appsettings.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.staticwebassets.runtime.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.exe
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.deps.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.runtimeconfig.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.pdb
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\ApiPolo.xml
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Cronos.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\FirebaseAdmin.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Api.Gax.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Api.Gax.Rest.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Apis.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Apis.Auth.PlatformServices.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Apis.Auth.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Google.Apis.Core.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Humanizer.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.Mvc.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.Razor.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.Helpers.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.WebPages.Deployment.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.WebPages.Razor.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Web.WebPages.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.Negotiate.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Design.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Extensions.Features.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Identity.Client.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.OpenApi.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Web.Infrastructure.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Newtonsoft.Json.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Renci.SshNet.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\SshNet.Security.Cryptography.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Drawing.Common.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.IO.Pipelines.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Runtime.Caching.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Security.Permissions.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\System.Windows.Extensions.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.csproj.AssemblyReference.cache
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.AssemblyInfoInputs.cache
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.AssemblyInfo.cs
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.csproj.CoreCompileInputs.cache
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.MvcApplicationPartsAssemblyInfo.cs
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.MvcApplicationPartsAssemblyInfo.cache
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets\msbuild.ApiPolo.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets\msbuild.build.ApiPolo.props
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.ApiPolo.props
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.ApiPolo.props
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets.pack.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets.build.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\staticwebassets.development.json
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\scopedcss\bundle\ApiPolo.styles.css
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.csproj.CopyComplete
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\refint\ApiPolo.dll
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.xml
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.pdb
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ApiPolo.genruntimeconfig.cache
|
||||
C:\Users\audif\source\repos\ApiManutenzioni\ApiPolo\obj\Debug\net6.0\ref\ApiPolo.dll
|
||||
|
||||
Binary file not shown.
@ -1 +1 @@
|
||||
4890addb743df8cdabda2ce05a1be354d83573fa
|
||||
153ebeadabf03a6a990455fbd32f181e14171207
|
||||
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user