public void alterarSenha(tb_usuario usuario, string confiSenha) { if (usuario.ds_senha == string.Empty) { throw new ArgumentException("Insira uma senha válida"); } if (confiSenha == string.Empty) { throw new ArgumentException("Confirme a sua senha"); } if (usuario.ds_senha != confiSenha) { throw new ArgumentException("Senhas não compatíveis"); } if (usuario.ds_senha.Length < 8) { throw new ArgumentException("Senha deve ter pelo menos 8 caractéres"); } if (confiSenha.Length < 8) { throw new ArgumentException("Senha deve ter pelo menos 8 caractéres"); } db.alterarSenha(usuario); }