From fc00d436ca852369ea825714fb7c0ef3e15463b2 Mon Sep 17 00:00:00 2001 From: edgar Date: Thu, 16 Jun 2016 15:41:07 +0000 Subject: [PATCH] fixes bug #0007445 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@57006 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/service/impl/EmpleadoServiceImpl.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/service/impl/EmpleadoServiceImpl.java b/src/com/rjconsultores/ventaboletos/service/impl/EmpleadoServiceImpl.java index 8575e3f63..5211c9581 100644 --- a/src/com/rjconsultores/ventaboletos/service/impl/EmpleadoServiceImpl.java +++ b/src/com/rjconsultores/ventaboletos/service/impl/EmpleadoServiceImpl.java @@ -8,6 +8,7 @@ import com.rjconsultores.ventaboletos.dao.ConductorDAO; import com.rjconsultores.ventaboletos.dao.EmpleadoDAO; import com.rjconsultores.ventaboletos.entidad.Conductor; import com.rjconsultores.ventaboletos.entidad.Empleado; +import com.rjconsultores.ventaboletos.entidad.Empresa; import com.rjconsultores.ventaboletos.service.EmpleadoService; import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado; import java.util.Calendar; @@ -104,4 +105,10 @@ public class EmpleadoServiceImpl implements EmpleadoService { public List pesquisaClave(String empleadoClave) { return empleadoDAO.pesquisaClave(empleadoClave); } + + @Override + public List pesquisaEmpresa(Empresa empresa) { + return empleadoDAO.pesquisaEmpresa(empresa.getEmpresaId()); + } + }