Fix modelli

This commit is contained in:
Samuele Locatelli
2021-09-20 16:24:21 +02:00
parent 521edc8f91
commit c980019ca1
4 changed files with 0 additions and 79 deletions
-31
View File
@@ -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
}
}
-19
View File
@@ -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
}
}
-19
View File
@@ -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
}
}
-10
View File
@@ -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; }