CurrPage:

- riporto a 1 se cambio filtro
- sbaglia primo cambio da sel DataPager
This commit is contained in:
Samuele Locatelli
2022-09-15 18:01:25 +02:00
parent 7cc25ac9be
commit ae39db267d
3 changed files with 46 additions and 52 deletions
+5 -1
View File
@@ -17,6 +17,7 @@
public int MaxRecord { get; set; } = 100;
public int TempoAgg { get; set; } = 2000;
public int CurrPage { get; set; } = 1;
#endregion Public Properties
@@ -38,10 +39,13 @@
if (MaxRecord != item.MaxRecord)
return false;
if (TempoAgg != item.TempoAgg)
return false;
if (CurrPage != item.CurrPage)
return false;
return true;
}