Macchinari in uso dal cliente.
<?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>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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 ; } } |