riorganizzaizone classi obj
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GPW_data
|
||||
{
|
||||
public class chartJsTimeSerie
|
||||
{
|
||||
public DateTime x { get; set; }
|
||||
public decimal y { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -355,40 +355,4 @@ 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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user