45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GPW_data
|
|
{
|
|
/// <summary>
|
|
/// elenco stato controllo
|
|
/// </summary>
|
|
public enum statoControllo
|
|
{
|
|
edit,
|
|
insert,
|
|
item
|
|
}
|
|
/// <summary>
|
|
/// definisce i tipi di codice che il barcode può leggere
|
|
/// </summary>
|
|
public enum tipoCodiceBarcode
|
|
{
|
|
/// <summary>
|
|
/// Tipo non riconosciuto
|
|
/// </summary>
|
|
ND,
|
|
/// <summary>
|
|
/// [idx] - il barcode rappresenta un codice dipendente tipo "idx" + numero
|
|
/// </summary>
|
|
idxDipendente,
|
|
/// <summary>
|
|
/// [matr] - il barcode rappresenta un codice dipendente tipo "matr" + matricola
|
|
/// </summary>
|
|
matrDipendente,
|
|
/// <summary>
|
|
/// [CF] - il barcode rappresenta un codice dipendente tipo "cf" + cod fiscale dipendente
|
|
/// </summary>
|
|
cfDipendente,
|
|
/// <summary>
|
|
/// codice che indica un comando (prefisso da web.config)
|
|
/// </summary>
|
|
Comando
|
|
}
|
|
}
|