diff --git a/.vs/GPW.sqlite b/.vs/GPW.sqlite
index d0b2a84..dffbc33 100644
Binary files a/.vs/GPW.sqlite and b/.vs/GPW.sqlite differ
diff --git a/.vs/config/applicationhost.config b/.vs/config/applicationhost.config
index 759d72b..55fa6c8 100644
--- a/.vs/config/applicationhost.config
+++ b/.vs/config/applicationhost.config
@@ -178,7 +178,7 @@
-
+
@@ -186,7 +186,7 @@
-
+
@@ -194,7 +194,7 @@
-
+
@@ -210,7 +210,7 @@
-
+
diff --git a/GPW_Admin/Default.aspx.cs b/GPW_Admin/Default.aspx.cs
index 61c557d..2f748f4 100644
--- a/GPW_Admin/Default.aspx.cs
+++ b/GPW_Admin/Default.aspx.cs
@@ -1,10 +1,5 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using SteamWare;
+using SteamWare;
+using System;
namespace GPW.AdminArea
{
@@ -14,6 +9,7 @@ namespace GPW.AdminArea
{
memLayer.ML.setSessionVal("preUrlString", "", true);
memLayer.ML.setSessionVal("nextPage", "menu.aspx");
+ logger.lg.scriviLog(string.Format("Errore utente non inizializzato: rimando a login.aspx, dalla pagina {0}", "menu.aspx"), tipoLog.STARTUP);
Response.Redirect("login.aspx");
}
}
diff --git a/GPW_Admin/GPW_Admin.csproj.user b/GPW_Admin/GPW_Admin.csproj.user
index 16f9682..55e0acc 100644
--- a/GPW_Admin/GPW_Admin.csproj.user
+++ b/GPW_Admin/GPW_Admin.csproj.user
@@ -6,7 +6,7 @@
enabled
false
ShowAllFiles
- SPS
+ IIS02
diff --git a/GPW_Admin/WebUserControls/mod_login.ascx b/GPW_Admin/WebUserControls/mod_login.ascx
index 592dbe6..ebceced 100644
--- a/GPW_Admin/WebUserControls/mod_login.ascx
+++ b/GPW_Admin/WebUserControls/mod_login.ascx
@@ -4,7 +4,7 @@
<% } %>
-
+
|
@@ -51,7 +51,7 @@
|
- |
+ |
|
diff --git a/GPW_Admin/WebUserControls/mod_login.ascx.cs b/GPW_Admin/WebUserControls/mod_login.ascx.cs
index 90fa9c4..5e16b6f 100644
--- a/GPW_Admin/WebUserControls/mod_login.ascx.cs
+++ b/GPW_Admin/WebUserControls/mod_login.ascx.cs
@@ -1,14 +1,6 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
using SteamWare;
+using System;
+using System.Web.UI;
///
/// classe gestione login e forzatura login
@@ -54,9 +46,11 @@ public partial class mod_login : ApplicationUserControl
///
private void AdLogin()
{
+ logger.lg.scriviLog(string.Format("Inizio procedura login..."), tipoLog.INFO);
lblMessage.Text = traduci("UserNotAuth");
if (Page.User.Identity.IsAuthenticated)
{
+ logger.lg.scriviLog(string.Format("Login 01"), tipoLog.INFO);
//recupera user windows se c'è...
string ad_name = Page.User.Identity.Name;
string delimStr = "\\";
@@ -66,10 +60,11 @@ public partial class mod_login : ApplicationUserControl
user_std _utente = new user_std();
if (_utente.ADuserOk(dom_user[0], dom_user[1]))
{
+ logger.lg.scriviLog(string.Format("Login 02"), tipoLog.INFO);
bool fatto = _utente.startUpUtente(dom_user[0], dom_user[1]);
if (fatto)
{
- SteamWare.logger.lg.scriviLog(string.Format("L'utente {0} ({1}) ha effettuato il login correttamente", _utente.CognomeNome, _utente.userNameAD), SteamWare.tipoLog.INFO);
+ logger.lg.scriviLog(string.Format("L'utente {0} ({1}) ha effettuato il login correttamente", _utente.CognomeNome, _utente.userNameAD), tipoLog.INFO);
if (Login_ok != null)
{
Login_ok(this, new EventArgs());
@@ -78,7 +73,7 @@ public partial class mod_login : ApplicationUserControl
else
{
lblMessage.Text = String.Format("{0}
There are some problems instatiating user: {1}/{2}", user_std.UtSn.Traduci("AccessFail"), dom_user[0], dom_user[1]);
- SteamWare.logger.lg.scriviLog(String.Format("Accesso fallito, problemi ad istanziare l'utente {0}/{1}", dom_user[0], dom_user[1]), SteamWare.tipoLog.ERROR);
+ logger.lg.scriviLog(String.Format("Accesso fallito, problemi ad istanziare l'utente {0}/{1}", dom_user[0], dom_user[1]), tipoLog.ERROR);
if (Login_Error != null)
{
Login_Error(this, new EventArgs());
@@ -87,15 +82,17 @@ public partial class mod_login : ApplicationUserControl
}
else
{
+ logger.lg.scriviLog(string.Format("Login 03"), tipoLog.INFO);
if (memLayer.ML.confReadBool("autoEnrollEnabled"))
{
+ logger.lg.scriviLog(string.Format("Login 04"), tipoLog.INFO);
// rimando al modulo di auto enroll...
Response.Redirect("autoEnroll.aspx");
}
else
{
lblMessage.Text = String.Format("{0}
user not allowed: {1}/{2}", user_std.UtSn.Traduci("AccessFail"), dom_user[0], dom_user[1]);
- SteamWare.logger.lg.scriviLog(String.Format("Utente non autorizzato: {0}/{1}", dom_user[0], dom_user[1]), SteamWare.tipoLog.WARNING);
+ logger.lg.scriviLog(String.Format("Utente non autorizzato: {0}/{1}", dom_user[0], dom_user[1]), tipoLog.WARNING);
if (Login_Error != null)
{
Login_Error(this, new EventArgs());
@@ -106,7 +103,7 @@ public partial class mod_login : ApplicationUserControl
else
{
lblMessage.Text = user_std.UtSn.Traduci("AccessFail") + user_std.UtSn.Traduci("UsrNotAuth");
- SteamWare.logger.lg.scriviLog(String.Format("Accesso fallito, utente non autenticato"), SteamWare.tipoLog.WARNING);
+ logger.lg.scriviLog(String.Format("Accesso fallito, utente non autenticato"), tipoLog.WARNING);
if (Login_Error != null)
{
Login_Error(this, new EventArgs());
@@ -140,7 +137,7 @@ public partial class mod_login : ApplicationUserControl
if (fatto)
{
string _rigaLog = String.Format("User {0} has forced user identity ok: logged as \t {1}\\{2}", Page.User.Identity.Name, dominio.Text, user.Text);
- SteamWare.logger.lg.scriviLog(_rigaLog, SteamWare.tipoLog.INFO);
+ SteamWare.logger.lg.scriviLog(_rigaLog, tipoLog.INFO);
if (Login_ok != null)
{
Login_ok(this, new EventArgs());
@@ -152,7 +149,7 @@ public partial class mod_login : ApplicationUserControl
lblMessage.Text = String.Format("{0}
key not allowed for operation!!! operation logged!!!", user_std.UtSn.Traduci("AccessFail"));
mandaEmail(_fromEmail, _adminEmail, "Attenzione: tentativo di accesso non autorizzato!", String.Format("Tentativo di forcing user non autorizzato!
L'utente {0} ha tentato di accedere a {1} forzando l'utente ma la sua key autorizzativa e' sbagliata...", Page.User.Identity.Name, user_std.UtSn.Traduci(SteamWare.memLayer.ML.confReadString("defaultApp"))));
string _rigaLog = String.Format("User {0}\t tried to force user - wrong password - he tried to log as \t {1}\\{2}", Page.User.Identity.Name, dominio.Text, user.Text);
- SteamWare.logger.lg.scriviLog(_rigaLog, SteamWare.tipoLog.WARNING);
+ SteamWare.logger.lg.scriviLog(_rigaLog, tipoLog.WARNING);
if (Login_Error != null)
{
Login_Error(this, new EventArgs());
@@ -163,7 +160,7 @@ public partial class mod_login : ApplicationUserControl
{
mandaEmail(_fromEmail, _adminEmail, "Attenzione: tentativo di accesso non autorizzato!", String.Format("Tentativo di forcing user non autorizzato!
L'utente {0} ha tentato di accedere a {1} forzando l'utente ma la funzione e' disabilitata...", Page.User.Identity.Name, user_std.UtSn.Traduci(SteamWare.memLayer.ML.confReadString("defaultApp"))));
string _rigaLog = String.Format("User {0}\t tried to force user - access disabled - he tried to log as \t {1}\\{2}", Page.User.Identity.Name, dominio.Text, user.Text);
- SteamWare.logger.lg.scriviLog(_rigaLog, SteamWare.tipoLog.WARNING);
+ SteamWare.logger.lg.scriviLog(_rigaLog, tipoLog.WARNING);
if (Login_Error != null)
{
Login_Error(this, new EventArgs());
@@ -178,7 +175,7 @@ public partial class mod_login : ApplicationUserControl
Login_Error(this, new EventArgs());
}
string _rigaLog = String.Format("\t Someone tried to force user - real user: \t - not autenticated - \t tried to log as \t {0}\\{1}", dominio.Text, user.Text);
- SteamWare.logger.lg.scriviLog(_rigaLog, SteamWare.tipoLog.WARNING);
+ SteamWare.logger.lg.scriviLog(_rigaLog, tipoLog.WARNING);
}
}
diff --git a/GPW_Admin/WebUserControls/mod_login.ascx.designer.cs b/GPW_Admin/WebUserControls/mod_login.ascx.designer.cs
index 7d2f20b..ada018d 100644
--- a/GPW_Admin/WebUserControls/mod_login.ascx.designer.cs
+++ b/GPW_Admin/WebUserControls/mod_login.ascx.designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
+//
+// Codice generato da uno strumento.
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
+// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+// il codice viene rigenerato.
+//
//------------------------------------------------------------------------------
@@ -12,101 +12,101 @@
public partial class mod_login {
///
- /// pnlForceUser control.
+ /// Controllo pnlForceUser.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Panel pnlForceUser;
///
- /// lblTitolo control.
+ /// Controllo lblTitolo.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Label lblTitolo;
///
- /// lblPwd control.
+ /// Controllo lblPwd.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Label lblPwd;
///
- /// authKey control.
+ /// Controllo authKey.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.TextBox authKey;
///
- /// lblDominio control.
+ /// Controllo lblDominio.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Label lblDominio;
///
- /// dominio control.
+ /// Controllo dominio.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.TextBox dominio;
///
- /// lblUser control.
+ /// Controllo lblUser.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Label lblUser;
///
- /// user control.
+ /// Controllo user.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.TextBox user;
///
- /// btnOk control.
+ /// Controllo btnOk.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Button btnOk;
///
- /// lblMessage control.
+ /// Controllo lblMessage.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.Label lblMessage;
///
- /// HypLinkSSO control.
+ /// Controllo HypLinkSSO.
///
///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
///
protected global::System.Web.UI.WebControls.HyperLink HypLinkSSO;
}
diff --git a/GPW_Admin/WebUserControls/mod_timbrMensili.ascx.cs b/GPW_Admin/WebUserControls/mod_timbrMensili.ascx.cs
index 0268d59..a9affe7 100644
--- a/GPW_Admin/WebUserControls/mod_timbrMensili.ascx.cs
+++ b/GPW_Admin/WebUserControls/mod_timbrMensili.ascx.cs
@@ -1,12 +1,9 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
+using GPW_data;
+using SteamWare;
+using System;
+using System.Data;
using System.Web.UI;
using System.Web.UI.WebControls;
-using System.Data;
-using SteamWare;
-using GPW_data;
namespace GPW_Admin.WebUserControls
{
@@ -17,7 +14,6 @@ namespace GPW_Admin.WebUserControls
#region gestione eventi
public event EventHandler eh_resetSelezione;
- public event EventHandler eh_nuovoValore;
#endregion
diff --git a/GPW_Data/DS_Applicazione.Designer.cs b/GPW_Data/DS_Applicazione.Designer.cs
index ffe5f29..5292d48 100644
--- a/GPW_Data/DS_Applicazione.Designer.cs
+++ b/GPW_Data/DS_Applicazione.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Il codice è stato generato da uno strumento.
+// Versione runtime:4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
+// il codice viene rigenerato.
//
//------------------------------------------------------------------------------
@@ -9204,7 +9204,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbrature.entrataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata\' in table \'Timbrature\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata\' nella tabella \'Timbrature\' è DBNull.", e);
}
}
set {
@@ -9220,7 +9220,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbrature.IPv4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'IPv4\' in table \'Timbrature\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'IPv4\' nella tabella \'Timbrature\' è DBNull.", e);
}
}
set {
@@ -9236,7 +9236,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbrature.CodTipoTimbColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodTipoTimb\' in table \'Timbrature\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodTipoTimb\' nella tabella \'Timbrature\' è DBNull.", e);
}
}
set {
@@ -9252,7 +9252,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbrature.ApprovColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Approv\' in table \'Timbrature\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Approv\' nella tabella \'Timbrature\' è DBNull.", e);
}
}
set {
@@ -9364,7 +9364,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureExpl.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9380,7 +9380,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.entrata_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_1\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_1\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9396,7 +9396,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.uscita_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_1\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_1\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9412,7 +9412,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.entrata_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_2\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_2\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9428,7 +9428,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.uscita_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_2\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_2\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9444,7 +9444,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.entrata_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_3\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_3\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9460,7 +9460,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.uscita_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_3\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_3\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9476,7 +9476,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.entrata_4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_4\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_4\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9492,7 +9492,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTimbratureExpl.uscita_4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_4\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_4\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9508,7 +9508,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbratureExpl.h_lavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_lav\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_lav\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9524,7 +9524,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbratureExpl.h_giustColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_giust\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_giust\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9540,7 +9540,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minLav\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minLav\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9556,7 +9556,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minOrd\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minOrd\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9572,7 +9572,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minStraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minStra\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minStra\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9588,7 +9588,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minPermColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minPerm\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minPerm\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9604,7 +9604,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minFerColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFer\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFer\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9620,7 +9620,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minMalColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minMal\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minMal\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9636,7 +9636,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minFestColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFest\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFest\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9652,7 +9652,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbratureExpl.isOkTimColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkTim\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkTim\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9668,7 +9668,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbratureExpl.isOkAppColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkApp\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkApp\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9684,7 +9684,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.isOkLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkLav\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkLav\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9700,7 +9700,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.isOkColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOk\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOk\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9716,7 +9716,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minNonLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minNonLav\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minNonLav\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9732,7 +9732,7 @@ namespace GPW_data {
return ((int)(this[this.tableTimbratureExpl.minArcoPresColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minArcoPres\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minArcoPres\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9748,7 +9748,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbratureExpl.blockColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'block\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'block\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9764,7 +9764,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureExpl.chkFunCodColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'chkFunCod\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'chkFunCod\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -9780,7 +9780,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureExpl.chkFunResColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'chkFunRes\' in table \'TimbratureExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'chkFunRes\' nella tabella \'TimbratureExpl\' è DBNull.", e);
}
}
set {
@@ -10179,7 +10179,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagDevices.DescriptionColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Description\' in table \'AnagDevices\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Description\' nella tabella \'AnagDevices\' è DBNull.", e);
}
}
set {
@@ -10217,7 +10217,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagDevices.lastIPv4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'lastIPv4\' in table \'AnagDevices\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'lastIPv4\' nella tabella \'AnagDevices\' è DBNull.", e);
}
}
set {
@@ -10283,7 +10283,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.matricolaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'matricola\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'matricola\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10299,7 +10299,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.CFColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CF\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CF\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10315,7 +10315,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.CognomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Cognome\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Cognome\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10331,7 +10331,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.NomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Nome\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Nome\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10347,7 +10347,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableDipendenti.dataNascitaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'dataNascita\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'dataNascita\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10363,7 +10363,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.luogoNascitaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'luogoNascita\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'luogoNascita\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10379,7 +10379,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.provNascitaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'provNascita\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'provNascita\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10395,7 +10395,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.nazNascitaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nazNascita\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nazNascita\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10411,7 +10411,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.codHwColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codHw\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codHw\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10427,7 +10427,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.codOrarioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codOrario\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codOrario\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10443,7 +10443,7 @@ namespace GPW_data {
return ((bool)(this[this.tableDipendenti.mailLastOpColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'mailLastOp\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'mailLastOp\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10459,7 +10459,7 @@ namespace GPW_data {
return ((bool)(this[this.tableDipendenti.mailDayColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'mailDay\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'mailDay\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10475,7 +10475,7 @@ namespace GPW_data {
return ((bool)(this[this.tableDipendenti.mailWeekColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'mailWeek\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'mailWeek\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10491,7 +10491,7 @@ namespace GPW_data {
return ((bool)(this[this.tableDipendenti.mailMonthColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'mailMonth\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'mailMonth\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10507,7 +10507,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.emailColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'email\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'email\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10523,7 +10523,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.authKeyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'authKey\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'authKey\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10539,7 +10539,7 @@ namespace GPW_data {
return ((int)(this[this.tableDipendenti.numAuthColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'numAuth\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'numAuth\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10555,7 +10555,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.WOL_MACColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'WOL_MAC\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'WOL_MAC\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10571,7 +10571,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.dominioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'dominio\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'dominio\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10587,7 +10587,7 @@ namespace GPW_data {
return ((string)(this[this.tableDipendenti.utenteColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'utente\' in table \'Dipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'utente\' nella tabella \'Dipendenti\' è DBNull.", e);
}
}
set {
@@ -10902,7 +10902,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.RagSocialeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RagSociale\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10918,7 +10918,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.indirizzoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'indirizzo\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'indirizzo\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10934,7 +10934,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.CAPColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CAP\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CAP\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10950,7 +10950,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.cittaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'citta\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'citta\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10966,7 +10966,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.provColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'prov\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'prov\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10982,7 +10982,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.telColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'tel\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'tel\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -10998,7 +10998,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.urlColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'url\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'url\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11014,7 +11014,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.emailColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'email\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'email\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11030,7 +11030,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.pIvaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pIva\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pIva\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11046,7 +11046,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.CFColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CF\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CF\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11062,7 +11062,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.logoUrlColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'logoUrl\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'logoUrl\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11078,7 +11078,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagClienti.notaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nota\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nota\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11094,7 +11094,7 @@ namespace GPW_data {
return ((int)(this[this.tableAnagClienti.OldIdxColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'OldIdx\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'OldIdx\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11110,7 +11110,7 @@ namespace GPW_data {
return ((byte)(this[this.tableAnagClienti.AttivoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Attivo\' in table \'AnagClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Attivo\' nella tabella \'AnagClienti\' è DBNull.", e);
}
}
set {
@@ -11364,7 +11364,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti.budgetTimeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetTime\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetTime\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11380,7 +11380,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti.budgetMoneyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetMoney\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetMoney\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11396,7 +11396,7 @@ namespace GPW_data {
return ((int)(this[this.tableAnagProgetti.OldIdxColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'OldIdx\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'OldIdx\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11412,7 +11412,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagProgetti.RagSocialeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RagSociale\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11439,7 +11439,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagProgetti.codExtColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codExt\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codExt\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11455,7 +11455,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti.totOreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOre\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOre\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11471,7 +11471,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableAnagProgetti.avvioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'avvio\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'avvio\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11487,7 +11487,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableAnagProgetti.chiusuraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'chiusura\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'chiusura\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11503,7 +11503,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti.totOrePrevMontColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOrePrevMont\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOrePrevMont\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11519,7 +11519,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti.totOreLast30Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreLast30\' in table \'AnagProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreLast30\' nella tabella \'AnagProgetti\' è DBNull.", e);
}
}
set {
@@ -11740,7 +11740,7 @@ namespace GPW_data {
return ((int)(this[this.tableAnagFasi.idxProgettoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxProgetto\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxProgetto\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11778,7 +11778,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagFasi.nomeFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeFase\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeFase\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11794,7 +11794,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagFasi.descrizioneFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizioneFase\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizioneFase\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11810,7 +11810,7 @@ namespace GPW_data {
return ((bool)(this[this.tableAnagFasi.enableTimeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'enableTime\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'enableTime\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11826,7 +11826,7 @@ namespace GPW_data {
return ((bool)(this[this.tableAnagFasi.enableMoneyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'enableMoney\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'enableMoney\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11853,7 +11853,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagFasi.codClasseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codClasse\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codClasse\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11869,7 +11869,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagFasi.codExtColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codExt\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codExt\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11885,7 +11885,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagFasi.totOreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOre\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOre\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11901,7 +11901,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagFasi.budgetTimeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetTime\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetTime\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -11917,7 +11917,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagFasi.budgetMoneyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetMoney\' in table \'AnagFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetMoney\' nella tabella \'AnagFasi\' è DBNull.", e);
}
}
set {
@@ -12112,7 +12112,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_logCommUt.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12128,7 +12128,7 @@ namespace GPW_data {
return ((double)(this[this.tablev_logCommUt.h_lavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_lav\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_lav\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12144,7 +12144,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablev_logCommUt.h_comColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_com\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_com\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12160,7 +12160,7 @@ namespace GPW_data {
return ((bool)(this[this.tablev_logCommUt.okTimbrColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'okTimbr\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'okTimbr\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12176,7 +12176,7 @@ namespace GPW_data {
return ((bool)(this[this.tablev_logCommUt.okLavComColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'okLavCom\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'okLavCom\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12192,7 +12192,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_logCommUt.progettoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'progetto\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'progetto\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12208,7 +12208,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minOrd\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minOrd\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12224,7 +12224,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minStraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minStra\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minStra\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12240,7 +12240,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minPermColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minPerm\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minPerm\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12256,7 +12256,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minFerColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFer\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFer\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12272,7 +12272,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minMalColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minMal\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minMal\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12288,7 +12288,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minFestColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFest\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFest\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12304,7 +12304,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_logCommUt.minMppColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minMpp\' in table \'v_logCommUt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minMpp\' nella tabella \'v_logCommUt\' è DBNull.", e);
}
}
set {
@@ -12546,7 +12546,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegAttivita.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'RegAttivita\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'RegAttivita\' è DBNull.", e);
}
}
set {
@@ -12562,7 +12562,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableRegAttivita.oreTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreTot\' in table \'RegAttivita\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreTot\' nella tabella \'RegAttivita\' è DBNull.", e);
}
}
set {
@@ -12578,7 +12578,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableRegAttivita.importoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'importo\' in table \'RegAttivita\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'importo\' nella tabella \'RegAttivita\' è DBNull.", e);
}
}
set {
@@ -12678,7 +12678,7 @@ namespace GPW_data {
return ((string)(this[this.tableCalendFesteFerie.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'CalendFesteFerie\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'CalendFesteFerie\' è DBNull.", e);
}
}
set {
@@ -12732,7 +12732,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagOrari.descOrarioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descOrario\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descOrario\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12748,7 +12748,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreOrdSettColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreOrdSett\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreOrdSett\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12764,7 +12764,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreStraordAssColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreStraordAss\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreStraordAss\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12780,7 +12780,7 @@ namespace GPW_data {
return ((bool)(this[this.tableAnagOrari.autoCompOreOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'autoCompOreOrd\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'autoCompOreOrd\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12796,7 +12796,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreLunColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreLun\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreLun\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12812,7 +12812,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreMarColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreMar\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreMar\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12828,7 +12828,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreMerColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreMer\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreMer\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12844,7 +12844,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreGioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreGio\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreGio\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12860,7 +12860,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreVenColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreVen\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreVen\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12876,7 +12876,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreSabColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreSab\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreSab\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12892,7 +12892,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagOrari.oreDomColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreDom\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreDom\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12908,7 +12908,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraInizio_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraInizio_1\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraInizio_1\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12924,7 +12924,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraFine_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraFine_1\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraFine_1\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12940,7 +12940,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraInizio_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraInizio_2\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraInizio_2\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12956,7 +12956,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraFine_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraFine_2\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraFine_2\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12972,7 +12972,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraInizio_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraInizio_3\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraInizio_3\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -12988,7 +12988,7 @@ namespace GPW_data {
return ((global::System.TimeSpan)(this[this.tableAnagOrari.oraFine_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oraFine_3\' in table \'AnagOrari\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oraFine_3\' nella tabella \'AnagOrari\' è DBNull.", e);
}
}
set {
@@ -13267,7 +13267,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbMeseExpl.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13283,7 +13283,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreOrd\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreOrd\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13299,7 +13299,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreFestColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreFest\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreFest\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13315,7 +13315,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreDaLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreDaLav\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreDaLav\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13331,7 +13331,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOrePermColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOrePerm\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOrePerm\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13347,7 +13347,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreFerColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreFer\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreFer\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13363,7 +13363,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreMalColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreMal\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreMal\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13379,7 +13379,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totLav\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totLav\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13395,7 +13395,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreNonLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreNonLav\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreNonLav\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13411,7 +13411,7 @@ namespace GPW_data {
return ((double)(this[this.tableTimbMeseExpl.totOreStraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOreStra\' in table \'TimbMeseExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOreStra\' nella tabella \'TimbMeseExpl\' è DBNull.", e);
}
}
set {
@@ -13595,7 +13595,7 @@ namespace GPW_data {
return ((int)(this[this.tableGiustificativi.minutiColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minuti\' in table \'Giustificativi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minuti\' nella tabella \'Giustificativi\' è DBNull.", e);
}
}
set {
@@ -13649,8 +13649,8 @@ namespace GPW_data {
return ((string)(this[this.tablestp_DipendentiAndAnomalie.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'stp_DipendentiAndAnomalie\' is DBNull" +
- ".", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'stp_DipendentiAndAnomalie\' è" +
+ " DBNull.", e);
}
}
set {
@@ -13666,7 +13666,8 @@ namespace GPW_data {
return ((string)(this[this.tablestp_DipendentiAndAnomalie.emailColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'email\' in table \'stp_DipendentiAndAnomalie\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'email\' nella tabella \'stp_DipendentiAndAnomalie\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -13743,7 +13744,7 @@ namespace GPW_data {
return ((string)(this[this.tableTE_RA_Expl.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13759,7 +13760,7 @@ namespace GPW_data {
return ((double)(this[this.tableTE_RA_Expl.h_lavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_lav\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_lav\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13775,7 +13776,7 @@ namespace GPW_data {
return ((double)(this[this.tableTE_RA_Expl.h_giustColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_giust\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_giust\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13791,7 +13792,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableTE_RA_Expl.h_comColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'h_com\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'h_com\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13807,7 +13808,7 @@ namespace GPW_data {
return ((string)(this[this.tableTE_RA_Expl.progettiColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'progetti\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'progetti\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13823,7 +13824,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.okLavComColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'okLavCom\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'okLavCom\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13839,7 +13840,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTE_RA_Expl.isOkTimColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkTim\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkTim\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13855,7 +13856,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTE_RA_Expl.isOkAppColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkApp\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkApp\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13871,7 +13872,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.isOkLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOkLav\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOkLav\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13887,7 +13888,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.isOkColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'isOk\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'isOk\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13903,7 +13904,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTE_RA_Expl.blockColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'block\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'block\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13919,7 +13920,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minOrd\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minOrd\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13935,7 +13936,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minNonLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minNonLav\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minNonLav\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13951,7 +13952,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minStraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minStra\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minStra\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13967,7 +13968,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minPermColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minPerm\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minPerm\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13983,7 +13984,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minFerColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFer\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFer\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -13999,7 +14000,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minMalColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minMal\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minMal\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14015,7 +14016,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minFestColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minFest\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minFest\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14031,7 +14032,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minRegAttColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minRegAtt\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minRegAtt\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14047,7 +14048,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.entrata_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_1\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_1\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14063,7 +14064,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.uscita_1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_1\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_1\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14079,7 +14080,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.entrata_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_2\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_2\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14095,7 +14096,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.uscita_2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_2\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_2\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14111,7 +14112,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.entrata_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_3\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_3\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14127,7 +14128,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.uscita_3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_3\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_3\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14143,7 +14144,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.entrata_4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata_4\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata_4\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14159,7 +14160,7 @@ namespace GPW_data {
return ((global::System.DateTime)(this[this.tableTE_RA_Expl.uscita_4Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'uscita_4\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'uscita_4\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14175,7 +14176,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minArcoPresColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minArcoPres\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minArcoPres\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14191,7 +14192,7 @@ namespace GPW_data {
return ((string)(this[this.tableTE_RA_Expl.chkFunCodColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'chkFunCod\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'chkFunCod\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14207,7 +14208,7 @@ namespace GPW_data {
return ((string)(this[this.tableTE_RA_Expl.chkFunResColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'chkFunRes\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'chkFunRes\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14223,7 +14224,7 @@ namespace GPW_data {
return ((int)(this[this.tableTE_RA_Expl.minMppColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minMpp\' in table \'TE_RA_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minMpp\' nella tabella \'TE_RA_Expl\' è DBNull.", e);
}
}
set {
@@ -14659,7 +14660,7 @@ namespace GPW_data {
return ((string)(this[this.tableregAttDayExpl.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14675,7 +14676,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableregAttDayExpl.oreTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreTot\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreTot\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14691,7 +14692,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableregAttDayExpl.importoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'importo\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'importo\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14707,7 +14708,7 @@ namespace GPW_data {
return ((string)(this[this.tableregAttDayExpl.RagSocialeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RagSociale\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14734,7 +14735,7 @@ namespace GPW_data {
return ((string)(this[this.tableregAttDayExpl.nomeFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeFase\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeFase\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14750,7 +14751,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableregAttDayExpl.minTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minTot\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minTot\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14777,7 +14778,7 @@ namespace GPW_data {
return ((string)(this[this.tableregAttDayExpl.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'regAttDayExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'regAttDayExpl\' è DBNull.", e);
}
}
set {
@@ -14892,7 +14893,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagProgetti_Expl.RagSocialeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RagSociale\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -14941,7 +14942,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagProgetti_Expl.descrProjColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrProj\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrProj\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -14957,7 +14958,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti_Expl.budgetTimeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetTime\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetTime\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -14973,7 +14974,8 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti_Expl.budgetMoneyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'budgetMoney\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'budgetMoney\' nella tabella \'AnagProgetti_Expl\' è DBNull." +
+ "", e);
}
}
set {
@@ -14989,7 +14991,7 @@ namespace GPW_data {
return ((int)(this[this.tableAnagProgetti_Expl.OldIdxColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'OldIdx\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'OldIdx\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -15016,7 +15018,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagProgetti_Expl.codExtColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'codExt\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'codExt\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -15032,7 +15034,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableAnagProgetti_Expl.totOreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'totOre\' in table \'AnagProgetti_Expl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'totOre\' nella tabella \'AnagProgetti_Expl\' è DBNull.", e);
}
}
set {
@@ -15169,7 +15171,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegistroEventi.commentoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'commento\' in table \'RegistroEventi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'commento\' nella tabella \'RegistroEventi\' è DBNull.", e);
}
}
set {
@@ -29658,73 +29660,74 @@ SELECT DataOra, evento, commento FROM RegistroEventi WHERE (DataOra = @DataOra)
}
if (((this._timbratureTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._timbratureTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._timbratureExplTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._timbratureExplTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagDevicesTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagDevicesTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._dipendentiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._dipendentiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagClientiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagClientiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagProgettiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagProgettiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._dipendenti2RuoliTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._dipendenti2RuoliTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagFasiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagFasiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._regAttivitaTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._regAttivitaTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._calendFesteFerieTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._calendFesteFerieTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagOrariTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagOrariTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._giustificativiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._giustificativiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._registroEventiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._registroEventiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
global::System.Data.IDbConnection workConnection = this.Connection;
if ((workConnection == null)) {
- throw new global::System.ApplicationException("TableAdapterManager contains no connection information. Set each TableAdapterMana" +
- "ger TableAdapter property to a valid TableAdapter instance.");
+ throw new global::System.ApplicationException("TableAdapterManager non contiene informazioni di connessione. Impostare la propri" +
+ "età TableAdapter di ciascun oggetto TableAdapterManager su un\'istanza TableAdapt" +
+ "er valida.");
}
bool workConnOpened = false;
if (((workConnection.State & global::System.Data.ConnectionState.Broken)
@@ -29737,8 +29740,8 @@ SELECT DataOra, evento, commento FROM RegistroEventi WHERE (DataOra = @DataOra)
}
global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
if ((workTransaction == null)) {
- throw new global::System.ApplicationException("The transaction cannot begin. The current data connection does not support transa" +
- "ctions or the current state is not allowing the transaction to begin.");
+ throw new global::System.ApplicationException("Impossibile avviare la transazione. La connessione dati corrente non supporta le " +
+ "transazioni oppure lo stato corrente non consente l\'avvio della transazione.");
}
global::System.Collections.Generic.List allChangedRows = new global::System.Collections.Generic.List();
global::System.Collections.Generic.List allAddedRows = new global::System.Collections.Generic.List();
diff --git a/GPW_Data/DS_Utility.Designer.cs b/GPW_Data/DS_Utility.Designer.cs
index e1f14ca..95c5d00 100644
--- a/GPW_Data/DS_Utility.Designer.cs
+++ b/GPW_Data/DS_Utility.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Il codice è stato generato da uno strumento.
+// Versione runtime:4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
+// il codice viene rigenerato.
//
//------------------------------------------------------------------------------
@@ -5694,7 +5694,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selDipendenti.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selDipendenti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selDipendenti\' è DBNull.", e);
}
}
set {
@@ -5737,7 +5737,7 @@ namespace GPW_data {
return ((string)(this[this.tablestp_getLastDays.DataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Data\' in table \'stp_getLastDays\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Data\' nella tabella \'stp_getLastDays\' è DBNull.", e);
}
}
set {
@@ -5780,7 +5780,7 @@ namespace GPW_data {
return ((int)(this[this.tablestp_getMin.minutoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'minuto\' in table \'stp_getMin\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'minuto\' nella tabella \'stp_getMin\' è DBNull.", e);
}
}
set {
@@ -5823,7 +5823,7 @@ namespace GPW_data {
return ((int)(this[this.tablestp_getHours.oraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ora\' in table \'stp_getHours\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ora\' nella tabella \'stp_getHours\' è DBNull.", e);
}
}
set {
@@ -5877,7 +5877,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selProgetti.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selProgetti\' è DBNull.", e);
}
}
set {
@@ -5953,7 +5953,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selFasi.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selFasi\' è DBNull.", e);
}
}
set {
@@ -5969,7 +5969,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_selFasi.conditioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'conditio\' in table \'v_selFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'conditio\' nella tabella \'v_selFasi\' è DBNull.", e);
}
}
set {
@@ -6035,7 +6035,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selClienti.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selClienti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selClienti\' è DBNull.", e);
}
}
set {
@@ -6078,7 +6078,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablestp_statsProj.oreBudgetColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreBudget\' in table \'stp_statsProj\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreBudget\' nella tabella \'stp_statsProj\' è DBNull.", e);
}
}
set {
@@ -6094,7 +6094,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablestp_statsProj.oreTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreTot\' in table \'stp_statsProj\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreTot\' nella tabella \'stp_statsProj\' è DBNull.", e);
}
}
set {
@@ -6110,7 +6110,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablestp_statsProj.oreMeseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreMese\' in table \'stp_statsProj\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreMese\' nella tabella \'stp_statsProj\' è DBNull.", e);
}
}
set {
@@ -6126,7 +6126,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablestp_statsProj.oreMesePrecColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreMesePrec\' in table \'stp_statsProj\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreMesePrec\' nella tabella \'stp_statsProj\' è DBNull.", e);
}
}
set {
@@ -6238,7 +6238,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selCodGiust.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selCodGiust\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selCodGiust\' è DBNull.", e);
}
}
set {
@@ -6281,7 +6281,7 @@ namespace GPW_data {
return ((int)(this[this.tablenextValContatore.Column1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Column1\' in table \'nextValContatore\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Column1\' nella tabella \'nextValContatore\' è DBNull.", e);
}
}
set {
@@ -6346,7 +6346,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selFasiOpt.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selFasiOpt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selFasiOpt\' è DBNull.", e);
}
}
set {
@@ -6362,7 +6362,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_selFasiOpt.conditioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'conditio\' in table \'v_selFasiOpt\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'conditio\' nella tabella \'v_selFasiOpt\' è DBNull.", e);
}
}
set {
@@ -6428,7 +6428,7 @@ namespace GPW_data {
return ((int)(this[this.tableAnagKeyValue.valIntColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'valInt\' in table \'AnagKeyValue\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'valInt\' nella tabella \'AnagKeyValue\' è DBNull.", e);
}
}
set {
@@ -6444,7 +6444,7 @@ namespace GPW_data {
return ((double)(this[this.tableAnagKeyValue.valFloatColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'valFloat\' in table \'AnagKeyValue\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'valFloat\' nella tabella \'AnagKeyValue\' è DBNull.", e);
}
}
set {
@@ -6460,7 +6460,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagKeyValue.valStringColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'valString\' in table \'AnagKeyValue\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'valString\' nella tabella \'AnagKeyValue\' è DBNull.", e);
}
}
set {
@@ -6476,7 +6476,7 @@ namespace GPW_data {
return ((string)(this[this.tableAnagKeyValue.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'AnagKeyValue\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'AnagKeyValue\' è DBNull.", e);
}
}
set {
@@ -6566,7 +6566,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selCodOrario.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selCodOrario\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selCodOrario\' è DBNull.", e);
}
}
set {
@@ -6620,7 +6620,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selPageSize.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selPageSize\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selPageSize\' è DBNull.", e);
}
}
set {
@@ -6636,7 +6636,7 @@ namespace GPW_data {
return ((int)(this[this.tablev_selPageSize.ordinalColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ordinal\' in table \'v_selPageSize\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ordinal\' nella tabella \'v_selPageSize\' è DBNull.", e);
}
}
set {
@@ -6691,7 +6691,8 @@ namespace GPW_data {
return ((int)(this[this.tablestp_VSProjFasi_search.idxProgettoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxProgetto\' in table \'stp_VSProjFasi_search\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxProgetto\' nella tabella \'stp_VSProjFasi_search\' è DBN" +
+ "ull.", e);
}
}
set {
@@ -6745,7 +6746,7 @@ namespace GPW_data {
return ((string)(this[this.tablefreqProgetti.nomeCommColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeComm\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeComm\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6761,7 +6762,7 @@ namespace GPW_data {
return ((int)(this[this.tablefreqProgetti.idxFaseCommColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxFaseComm\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxFaseComm\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6777,7 +6778,7 @@ namespace GPW_data {
return ((int)(this[this.tablefreqProgetti.idxFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxFase\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxFase\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6793,7 +6794,7 @@ namespace GPW_data {
return ((string)(this[this.tablefreqProgetti.nomeProjColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeProj\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeProj\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6809,7 +6810,7 @@ namespace GPW_data {
return ((string)(this[this.tablefreqProgetti.nomeFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeFase\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeFase\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6825,7 +6826,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablefreqProgetti.freqColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'freq\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'freq\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6841,7 +6842,7 @@ namespace GPW_data {
return ((decimal)(this[this.tablefreqProgetti.qtyColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'qty\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'qty\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6857,7 +6858,7 @@ namespace GPW_data {
return ((int)(this[this.tablefreqProgetti.totColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'tot\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'tot\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -6873,7 +6874,7 @@ namespace GPW_data {
return ((long)(this[this.tablefreqProgetti.RowNumColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RowNum\' in table \'freqProgetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RowNum\' nella tabella \'freqProgetti\' è DBNull.", e);
}
}
set {
@@ -7012,7 +7013,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selProjFasi.valueColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'value\' in table \'v_selProjFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'value\' nella tabella \'v_selProjFasi\' è DBNull.", e);
}
}
set {
@@ -7028,7 +7029,7 @@ namespace GPW_data {
return ((string)(this[this.tablev_selProjFasi.labelColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'label\' in table \'v_selProjFasi\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'label\' nella tabella \'v_selProjFasi\' è DBNull.", e);
}
}
set {
@@ -11269,13 +11270,14 @@ SELECT nomeVar, valInt, valFloat, valString, descrizione FROM AnagKeyValue WHERE
}
if (((this._anagKeyValueTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagKeyValueTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
global::System.Data.IDbConnection workConnection = this.Connection;
if ((workConnection == null)) {
- throw new global::System.ApplicationException("TableAdapterManager contains no connection information. Set each TableAdapterMana" +
- "ger TableAdapter property to a valid TableAdapter instance.");
+ throw new global::System.ApplicationException("TableAdapterManager non contiene informazioni di connessione. Impostare la propri" +
+ "età TableAdapter di ciascun oggetto TableAdapterManager su un\'istanza TableAdapt" +
+ "er valida.");
}
bool workConnOpened = false;
if (((workConnection.State & global::System.Data.ConnectionState.Broken)
@@ -11288,8 +11290,8 @@ SELECT nomeVar, valInt, valFloat, valString, descrizione FROM AnagKeyValue WHERE
}
global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
if ((workTransaction == null)) {
- throw new global::System.ApplicationException("The transaction cannot begin. The current data connection does not support transa" +
- "ctions or the current state is not allowing the transaction to begin.");
+ throw new global::System.ApplicationException("Impossibile avviare la transazione. La connessione dati corrente non supporta le " +
+ "transazioni oppure lo stato corrente non consente l\'avvio della transazione.");
}
global::System.Collections.Generic.List allChangedRows = new global::System.Collections.Generic.List();
global::System.Collections.Generic.List allAddedRows = new global::System.Collections.Generic.List();
diff --git a/GPW_Data/DS_export.Designer.cs b/GPW_Data/DS_export.Designer.cs
index 4968f3f..6758604 100644
--- a/GPW_Data/DS_export.Designer.cs
+++ b/GPW_Data/DS_export.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Il codice è stato generato da uno strumento.
+// Versione runtime:4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
+// il codice viene rigenerato.
//
//------------------------------------------------------------------------------
@@ -1491,7 +1491,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbratureZucchetti.entrataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'entrata\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'entrata\' nella tabella \'TimbratureZucchetti\' è DBNull.", e);
}
}
set {
@@ -1507,7 +1507,7 @@ namespace GPW_data {
return ((bool)(this[this.tableTimbratureZucchetti.ApprovColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Approv\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Approv\' nella tabella \'TimbratureZucchetti\' è DBNull.", e);
}
}
set {
@@ -1523,7 +1523,8 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.TimbratriceColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Timbratrice\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Timbratrice\' nella tabella \'TimbratureZucchetti\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -1539,7 +1540,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.BadgeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Badge\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Badge\' nella tabella \'TimbratureZucchetti\' è DBNull.", e);
}
}
set {
@@ -1555,7 +1556,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.DataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Data\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Data\' nella tabella \'TimbratureZucchetti\' è DBNull.", e);
}
}
set {
@@ -1571,7 +1572,7 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.OraColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Ora\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Ora\' nella tabella \'TimbratureZucchetti\' è DBNull.", e);
}
}
set {
@@ -1587,7 +1588,8 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.EntrataUscitaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'EntrataUscita\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'EntrataUscita\' nella tabella \'TimbratureZucchetti\' è DBN" +
+ "ull.", e);
}
}
set {
@@ -1603,7 +1605,8 @@ namespace GPW_data {
return ((string)(this[this.tableTimbratureZucchetti.campoExportColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'campoExport\' in table \'TimbratureZucchetti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'campoExport\' nella tabella \'TimbratureZucchetti\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -1730,7 +1733,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegAtt_pivot.RagSocialeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'RagSociale\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1757,7 +1760,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegAtt_pivot.nomeFaseColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nomeFase\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeFase\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1773,7 +1776,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegAtt_pivot.CognomeNomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNome\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNome\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1811,7 +1814,7 @@ namespace GPW_data {
return ((string)(this[this.tableRegAtt_pivot.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1827,7 +1830,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableRegAtt_pivot.oreTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'oreTot\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'oreTot\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1843,7 +1846,7 @@ namespace GPW_data {
return ((decimal)(this[this.tableRegAtt_pivot.importoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'importo\' in table \'RegAtt_pivot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'importo\' nella tabella \'RegAtt_pivot\' è DBNull.", e);
}
}
set {
@@ -1968,7 +1971,7 @@ namespace GPW_data {
return ((string)(this[this.tableElencoReport.nomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'nome\' in table \'ElencoReport\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'nome\' nella tabella \'ElencoReport\' è DBNull.", e);
}
}
set {
@@ -1984,7 +1987,7 @@ namespace GPW_data {
return ((string)(this[this.tableElencoReport.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'ElencoReport\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'ElencoReport\' è DBNull.", e);
}
}
set {
@@ -2000,7 +2003,7 @@ namespace GPW_data {
return ((string)(this[this.tableElencoReport.cssClassColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'cssClass\' in table \'ElencoReport\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'cssClass\' nella tabella \'ElencoReport\' è DBNull.", e);
}
}
set {
@@ -2016,7 +2019,7 @@ namespace GPW_data {
return ((string)(this[this.tableElencoReport.ReportUrlColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ReportUrl\' in table \'ElencoReport\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ReportUrl\' nella tabella \'ElencoReport\' è DBNull.", e);
}
}
set {
@@ -3283,13 +3286,14 @@ SELECT IdxRep, Area, nome, descrizione, cssClass, ReportUrl FROM ElencoReport WH
}
if (((this._elencoReportTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._elencoReportTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
global::System.Data.IDbConnection workConnection = this.Connection;
if ((workConnection == null)) {
- throw new global::System.ApplicationException("TableAdapterManager contains no connection information. Set each TableAdapterMana" +
- "ger TableAdapter property to a valid TableAdapter instance.");
+ throw new global::System.ApplicationException("TableAdapterManager non contiene informazioni di connessione. Impostare la propri" +
+ "età TableAdapter di ciascun oggetto TableAdapterManager su un\'istanza TableAdapt" +
+ "er valida.");
}
bool workConnOpened = false;
if (((workConnection.State & global::System.Data.ConnectionState.Broken)
@@ -3302,8 +3306,8 @@ SELECT IdxRep, Area, nome, descrizione, cssClass, ReportUrl FROM ElencoReport WH
}
global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
if ((workTransaction == null)) {
- throw new global::System.ApplicationException("The transaction cannot begin. The current data connection does not support transa" +
- "ctions or the current state is not allowing the transaction to begin.");
+ throw new global::System.ApplicationException("Impossibile avviare la transazione. La connessione dati corrente non supporta le " +
+ "transazioni oppure lo stato corrente non consente l\'avvio della transazione.");
}
global::System.Collections.Generic.List allChangedRows = new global::System.Collections.Generic.List();
global::System.Collections.Generic.List allAddedRows = new global::System.Collections.Generic.List();
diff --git a/GPW_Data/Properties/Settings.Designer.cs b/GPW_Data/Properties/Settings.Designer.cs
index 1412b0c..2419e3c 100644
--- a/GPW_Data/Properties/Settings.Designer.cs
+++ b/GPW_Data/Properties/Settings.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Il codice è stato generato da uno strumento.
+// Versione runtime:4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
+// il codice viene rigenerato.
//
//------------------------------------------------------------------------------
@@ -12,7 +12,7 @@ namespace GPW_data.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
diff --git a/GPW_data/App.config b/GPW_data/App.config
index d43e4da..628d621 100644
--- a/GPW_data/App.config
+++ b/GPW_data/App.config
@@ -5,4 +5,4 @@
-
+
diff --git a/GPW_data/GPW_data.csproj b/GPW_data/GPW_data.csproj
index 1be1e62..513ac72 100644
--- a/GPW_data/GPW_data.csproj
+++ b/GPW_data/GPW_data.csproj
@@ -10,7 +10,7 @@
Properties
GPW_data
GPW_data
- v4.5.2
+ v4.6.2
512
diff --git a/Jenkinsfile b/Jenkinsfile
index e2a6890..2da46cf 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -4,7 +4,7 @@ pipeline {
stage('Checkout') {
steps {
/* build delle SteamWare libs! */
- /* build 'SteamWare/SteamWareLib'*/
+ build 'SteamWare/SteamWareLib'
/* copio le libs...*/
step([$class: 'CopyArtifact', fingerprintArtifacts: true, projectName: 'Steamware/SteamWareLib', selector: [$class: 'WorkspaceSelector'], target: '../Steamware/SteamWareLib'])
diff --git a/VersGen/GPW.cs b/VersGen/GPW.cs
index 883b90b..db6562f 100644
--- a/VersGen/GPW.cs
+++ b/VersGen/GPW.cs
@@ -5,7 +5,7 @@
using System.Reflection;
-[assembly: AssemblyVersion("2.3.999.0")]
-[assembly: AssemblyFileVersion("2.3.999.0")]
-[assembly: AssemblyCopyright("Steamware © 2007-2016")]
+[assembly: AssemblyVersion("2.4.999.0")]
+[assembly: AssemblyFileVersion("2.4.999.0")]
+[assembly: AssemblyCopyright("Steamware © 2007-2017")]
[assembly: AssemblyCompany("Steamware")]
diff --git a/VersGen/GPW.tt b/VersGen/GPW.tt
index 597eb85..7c59783 100644
--- a/VersGen/GPW.tt
+++ b/VersGen/GPW.tt
@@ -6,8 +6,8 @@
using System.Reflection;
-[assembly: AssemblyVersion("2.3.999.<#= this.RevisionNumber #>")]
-[assembly: AssemblyFileVersion("2.3.999.<#= this.RevisionNumber #>")]
+[assembly: AssemblyVersion("2.4.999.<#= this.RevisionNumber #>")]
+[assembly: AssemblyFileVersion("2.4.999.<#= this.RevisionNumber #>")]
[assembly: AssemblyCopyright("Steamware © 2007-<#= DateTime.Now.Year #>")]
[assembly: AssemblyCompany("Steamware")]
<#+