refresh classi x comportamento selezione check19

This commit is contained in:
Samuele Locatelli
2021-11-12 12:14:22 +01:00
parent 6bdd34a228
commit 7f49276d57
4 changed files with 66 additions and 61 deletions
+13 -7
View File
@@ -50,16 +50,22 @@ namespace GPW_Commesse
/// <summary>
/// controllo stato licenze!
/// </summary>
public bool chkLicOk
{
get
{
return (licenzeGPW.checkLicenze);
}
}
public bool chkLicOk => doChkLicOk();
#endregion Public Properties
#region Private Methods
/// <summary>
/// controllo stato licenze!
/// </summary>
private bool doChkLicOk()
{
return (licenzeGPW.checkLicenze);
}
#endregion Private Methods
#region Protected Methods
/// <summary>