Definisce lo sconto ad importo per cliente/articolo
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CODICE_CLIENTE | Codice Cliente | Stringa | 8 | |
| 2 | CODICE_ARTICOLO | Codice Articolo | Stringa | 25 | |
| 3 | ScontoImporto | Importo sconto | Decimale | ||
| 4 | Modalita | Modalità sconto importo | Intero | 1 | Flag 1 o 0 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_SCONTI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<SCONTI>
<CODICE_CLIENTE />
<CODICE_ARTICOLO />
<ScontoImporto>0</ScontoImporto>
<Modalita>false</Modalita>
</SCONTI>
</TABELLA_SCONTI>
public partial class SCONTI
{
[Indexed(Name = "IX_PK_SCONTI", Order = 1, Unique = true), MaxLengthAttribute(8)]
public string CODICE_CLIENTE { get; set; }
[Indexed(Name = "IX_PK_SCONTI", Order = 2, Unique = true), MaxLengthAttribute(25)]
public string CODICE_ARTICOLO { get; set; }
public decimal ScontoImporto { get; set; }
public bool Modalita { get; set; }
}