Example #1
0
 protected bool Equals(Utente other)
 {
     return(string.Equals(Nome, other.Nome) && string.Equals(Cognome, other.Cognome) && string.Equals(Email, other.Email) && string.Equals(Username, other.Username) && string.Equals(HashPass, other.HashPass) && string.Equals(SaltPass, other.SaltPass) && LoginRemoto == other.LoginRemoto && Id == other.Id);
 }