Package healthwatcher.model.employee

Examples of healthwatcher.model.employee.Employee


      q.setObservacao(obsQueixa);
      Calendar agora = Calendar.getInstance();
      q.setDataParecer(new lib.util.Date(
          agora.get(Calendar.DAY_OF_MONTH),
          agora.get(Calendar.MONTH), agora.get(Calendar.YEAR)));
      Employee employee = (Employee) request
          .get(Login.EMPLOYEE);
      q.setAtendente(employee);
      q.setSituacao(Situation.QUEIXA_FECHADA);
      facade.updateComplaint(q); //Thiago acrescentou aqui
View Full Code Here


    return retorno;
  }

  public Employee searchEmployee(String login) throws ObjectNotFoundException,
      TransactionException {
    Employee employee = null;
    try {
      getPm().beginTransaction();
      employee = employeeRecord.search(login);
      getPm().commitTransaction();
      return employee;
View Full Code Here

TOP

Related Classes of healthwatcher.model.employee.Employee

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.