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()); + } + }