Macchinari in uso dal cliente.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CodiceCliente | Codice Cliente | Stringa | 8 | |
2 | CodiceMacchinario | Codice Macchinario | Stringa | 20 | |
3 | Descrizione | Descrizione | Stringa | 50 | |
4 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
5 | Ubicazione | Ubicazione macchinario | Stringa | 50 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_MACCHINARIO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<MACCHINARIO>
<CodiceCliente />
<CodiceMacchinario />
<Descrizione />
<CodiceArticolo />
<Ubicazione />
</MACCHINARIO>
</TABELLA_MACCHINARIO>
public partial class MACCHINARIO { [Indexed(Name = "IX_PK_MACCHINARIO", Order = 1, Unique = true), MaxLengthAttribute(8)] public string CodiceCliente { get; set; } [Indexed(Name = "IX_PK_MACCHINARIO", Order = 2, Unique = true), MaxLengthAttribute(20)] public string CodiceMacchinario { get; set; } [MaxLengthAttribute(50), NotNull] public string Descrizione { get; set; } [MaxLengthAttribute(25), NotNull] public string CodiceArticolo { get; set; } [MaxLengthAttribute(50), NotNull] public string Ubicazione { get; set; } }