fixes bug #0007445
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@57006 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
899e4e8fdc
commit
fc00d436ca
|
@ -8,6 +8,7 @@ import com.rjconsultores.ventaboletos.dao.ConductorDAO;
|
||||||
import com.rjconsultores.ventaboletos.dao.EmpleadoDAO;
|
import com.rjconsultores.ventaboletos.dao.EmpleadoDAO;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Conductor;
|
import com.rjconsultores.ventaboletos.entidad.Conductor;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Empleado;
|
import com.rjconsultores.ventaboletos.entidad.Empleado;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||||
import com.rjconsultores.ventaboletos.service.EmpleadoService;
|
import com.rjconsultores.ventaboletos.service.EmpleadoService;
|
||||||
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
|
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
@ -104,4 +105,10 @@ public class EmpleadoServiceImpl implements EmpleadoService {
|
||||||
public List<Empleado> pesquisaClave(String empleadoClave) {
|
public List<Empleado> pesquisaClave(String empleadoClave) {
|
||||||
return empleadoDAO.pesquisaClave(empleadoClave);
|
return empleadoDAO.pesquisaClave(empleadoClave);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Empleado> pesquisaEmpresa(Empresa empresa) {
|
||||||
|
return empleadoDAO.pesquisaEmpresa(empresa.getEmpresaId());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue