/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import java.util.List; import com.rjconsultores.ventaboletos.entidad.Empleado; import com.rjconsultores.ventaboletos.entidad.Perfil; import com.rjconsultores.ventaboletos.entidad.Usuario; import com.rjconsultores.ventaboletos.exception.BusinessException; /** * * @author gleimar */ public interface UsuarioService { public List obtenerTodos(); public Usuario obtenerID(Integer id); public void borrar(Usuario entidad); public List buscarPeloNome(String nome); public Usuario buscarPeloNomeSenha(String stUsuario, String senha); public List buscarPorEmpleado(Empleado get); public List buscarPelaCveUsuario(String claveUsuario); public Usuario suscribirActualizar(Usuario entidad, String senha, Perfil perfil) throws BusinessException; }