Filtro gruppi:

- add componente filtro gruppi
- add meccanismo mesageService
This commit is contained in:
Samuele Locatelli
2022-07-04 18:48:37 +02:00
parent 167c9d89d4
commit aca61c24dc
4 changed files with 124 additions and 0 deletions
+15
View File
@@ -106,6 +106,21 @@ namespace MP.Land.Data
}
}
protected string _groupName { get; set; } = "";
public string CodGruppo
{
get => _groupName;
set
{
if (_groupName != value)
{
_groupName = value;
ReportFilter();
}
}
}
#endregion Public Properties
#region Private Methods