Update catena eventi x richiesta reset dizionario
This commit is contained in:
@@ -60,6 +60,25 @@ namespace WebWindowComplex.DTO
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Metodo di equality limitato al controllo del JWD
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
/// <returns></returns>
|
||||
public bool JwdEqual(object obj)
|
||||
{
|
||||
if ((obj == null))
|
||||
return false;
|
||||
|
||||
if (!(obj is LivePayload item))
|
||||
return false;
|
||||
|
||||
if (CurrJwd != item.CurrJwd)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Override hash method
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user