riorganizzaizone classi obj

This commit is contained in:
Samuele E. Locatelli
2020-09-03 14:06:39 +02:00
parent 25f4173af2
commit 511f13d985
3 changed files with 58 additions and 36 deletions
+44
View File
@@ -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
}
}
+14
View File
@@ -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; }
}
}
-36
View File
@@ -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
}
}