* funcionario logado
*/
public void salvarAtendimento(Script s, Funcionario func)
throws DaoException {
Atendimento atendimento = new Atendimento();
if (s == null)
throw new NullPointerException("Script não pode ser nulo.");
if (func == null)
throw new NullPointerException("Funcionario não pode ser nulo.");
atendimento.setScript(s);
atendimento.setFuncionario(func);
atendimento.setData(new Timestamp(System.currentTimeMillis()));
atendimentoDao.save(atendimento);
}