Fix modelli
This commit is contained in:
@@ -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<Gruppi2Macchine>();
|
||||
Gruppi2Operatoris = new HashSet<Gruppi2Operatori>();
|
||||
}
|
||||
|
||||
#endregion Public Constructors
|
||||
|
||||
#region Public Properties
|
||||
|
||||
public string CodGruppo { get; set; }
|
||||
public string DescrGruppo { get; set; }
|
||||
public virtual ICollection<Gruppi2Macchine> Gruppi2Macchines { get; set; }
|
||||
public virtual ICollection<Gruppi2Operatori> Gruppi2Operatoris { get; set; }
|
||||
public bool SelEnabled { get; set; }
|
||||
public string TipoGruppo { get; set; }
|
||||
|
||||
#endregion Public Properties
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -7,22 +7,12 @@ namespace MP.AppAuth.Models
|
||||
{
|
||||
public partial class Macchine
|
||||
{
|
||||
#region Public Constructors
|
||||
|
||||
public Macchine()
|
||||
{
|
||||
Gruppi2Macchines = new HashSet<Gruppi2Macchine>();
|
||||
}
|
||||
|
||||
#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<Gruppi2Macchine> Gruppi2Macchines { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string Locazione { get; set; }
|
||||
public string Nome { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user