diff --git a/MP.AppAuth/Models/AnagraficaGruppi.cs b/MP.AppAuth/Models/AnagraficaGruppi.cs deleted file mode 100644 index 8ffc922b..00000000 --- a/MP.AppAuth/Models/AnagraficaGruppi.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; - -#nullable disable - -namespace MP.AppAuth.Models -{ - public partial class AnagraficaGruppi - { - #region Public Constructors - - public AnagraficaGruppi() - { - Gruppi2Macchines = new HashSet(); - Gruppi2Operatoris = new HashSet(); - } - - #endregion Public Constructors - - #region Public Properties - - public string CodGruppo { get; set; } - public string DescrGruppo { get; set; } - public virtual ICollection Gruppi2Macchines { get; set; } - public virtual ICollection Gruppi2Operatoris { get; set; } - public bool SelEnabled { get; set; } - public string TipoGruppo { get; set; } - - #endregion Public Properties - } -} \ No newline at end of file diff --git a/MP.AppAuth/Models/Gruppi2Macchine.cs b/MP.AppAuth/Models/Gruppi2Macchine.cs deleted file mode 100644 index 9bb3f661..00000000 --- a/MP.AppAuth/Models/Gruppi2Macchine.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -#nullable disable - -namespace MP.AppAuth.Models -{ - public partial class Gruppi2Macchine - { - #region Public Properties - - public string CodGruppo { get; set; } - public virtual AnagraficaGruppi CodGruppoNavigation { get; set; } - public string IdxMacchina { get; set; } - public virtual Macchine IdxMacchinaNavigation { get; set; } - - #endregion Public Properties - } -} \ No newline at end of file diff --git a/MP.AppAuth/Models/Gruppi2Operatori.cs b/MP.AppAuth/Models/Gruppi2Operatori.cs deleted file mode 100644 index f701f0aa..00000000 --- a/MP.AppAuth/Models/Gruppi2Operatori.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; - -#nullable disable - -namespace MP.AppAuth.Models -{ - public partial class Gruppi2Operatori - { - #region Public Properties - - public string CodGruppo { get; set; } - public virtual AnagraficaGruppi CodGruppoNavigation { get; set; } - public int MatrOpr { get; set; } - public virtual AnagraficaOperatori MatrOprNavigation { get; set; } - - #endregion Public Properties - } -} \ No newline at end of file diff --git a/MP.AppAuth/Models/Macchine.cs b/MP.AppAuth/Models/Macchine.cs index 259e0029..f7ef7966 100644 --- a/MP.AppAuth/Models/Macchine.cs +++ b/MP.AppAuth/Models/Macchine.cs @@ -7,22 +7,12 @@ namespace MP.AppAuth.Models { public partial class Macchine { - #region Public Constructors - - public Macchine() - { - Gruppi2Macchines = new HashSet(); - } - - #endregion Public Constructors - #region Public Properties public string CodMacchina { get; set; } public int ColNum { get; set; } public string Css { get; set; } public string Descrizione { get; set; } - public virtual ICollection Gruppi2Macchines { get; set; } public string IdxMacchina { get; set; } public string Locazione { get; set; } public string Nome { get; set; }