MACCHINARIO

Macchinari in uso dal cliente.

#COLONNADECRIZIONETIPOLENNOTE
1CodiceClienteCodice ClienteStringa8
2CodiceMacchinarioCodice MacchinarioStringa20
3DescrizioneDescrizioneStringa50
4CodiceArticoloCodice ArticoloStringa25
5UbicazioneUbicazione macchinarioStringa50


<?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; }


    
    }

Documentazione Zippy Infinity