a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
28 lines
856 B
C#
28 lines
856 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("Operator")]
|
|
public partial class Operator
|
|
{
|
|
public Operator()
|
|
{
|
|
ItemFluxModOperators = new HashSet<ItemFlux>();
|
|
ItemFluxOperators = new HashSet<ItemFlux>();
|
|
}
|
|
|
|
public string Id { get; set; } = null!;
|
|
public string CodExt { get; set; } = null!;
|
|
public string LastName { get; set; } = null!;
|
|
public string FirstName { get; set; } = null!;
|
|
|
|
public virtual ICollection<ItemFlux> ItemFluxModOperators { get; set; }
|
|
public virtual ICollection<ItemFlux> ItemFluxOperators { get; set; }
|
|
}
|
|
}
|