Update refresh parametri

This commit is contained in:
Samuele Locatelli
2022-12-12 14:07:54 +01:00
parent 0613d9a296
commit dbc8195422
8 changed files with 83 additions and 127 deletions
-5
View File
@@ -16,7 +16,6 @@
#region Public Properties
public string CodFlux { get; set; } = "*";
public int CurrCount { get; set; } = 0;
public int CurrPage { get; set; } = 1;
public DateTime? dtMax { get; set; } = null;
public DateTime? dtMin { get; set; } = null;
@@ -39,7 +38,6 @@
SelectFluxParams clonedData = new SelectFluxParams()
{
CodFlux = this.CodFlux,
CurrCount = this.CurrCount,
CurrPage = this.CurrPage,
dtRif = this.dtRif,
dtMax = this.dtMax,
@@ -61,9 +59,6 @@
if (!(obj is SelectFluxParams item))
return false;
if (CurrCount != item.CurrCount)
return false;
if (IdxMacchina != item.IdxMacchina)
return false;