Raymond Loycano began their professional career in 2000 as the Chief Technology Officer at Lynchval Systems Worldwide Inc. In 2011, they took on the role of Information Technology Consultant at Cendyn, before becoming the CEO of RFL Solutions, LLC in 2010. At RFL Solutions, they offer a wide range of small business professional services, from network design to implementation, maintenance and support, and consulting services.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.sirelab.bo.interfacebo.usuarios;
import com.sirelab.entidades.Persona;
import com.sirelab.entidades.Usuario;
import java.math.BigInteger;
import java.util.List;
/**
*
* @author ANDRES PINEDA
*/
public interface AdministrarUsuariosBOInterface {
public List<Usuario> consultarUsuariosPorParametro(Map<String, String> filtros);
public void crearNuevoUsuario(Usuario usuario);
public void modificarInformacionUsuario(Usuario usuario);
public Usuario obtenerUsuarioPorID(BigInteger idRegistro);
public Persona obtenerPersonaSistemaPorIDUsuario(BigInteger idUsuario);
public Persona obtenerPersonaSistemaPorDocumento(String documento);
public void actualizarInformacionPersona(Persona persona);
}
Sign up to view 0 direct reports
Get started