COmpletato display x integrazione dichiarazioni operatore

This commit is contained in:
Samuele Locatelli
2022-02-26 18:16:21 +01:00
parent efa11f9452
commit 2e2639b94f
17 changed files with 197 additions and 316 deletions
+3
View File
@@ -29,6 +29,7 @@ namespace MP.Stats.Data
public string IdxMacchina { get; set; } = "*";
public int IdxOdl { get; set; } = -999;
public string KeyRichiesta { get; set; } = "*";
public string Azione { get; set; } = "*";
/// <summary>
/// Numero record da recuperare, tipicamente la decina della pag corrente (10 * PageSize)
@@ -88,6 +89,8 @@ namespace MP.Stats.Data
return false;
if (KeyRichiesta != item.KeyRichiesta)
return false;
if (Azione != item.Azione)
return false;
return true;
}