public IHttpActionResult GetClient(string noDocumento) { try { var response = _servicioLogPolizaCliente.GetLogPolizaClienteByNoDocumento(noDocumento); return(Ok(response)); } catch (Exception ex) { return(BadRequest(ex.StackTrace)); } }
public List <LogPolizaCliente> GetLogPolizaClienteByNoDocumento(string noDocumento) { return(_logPolicyClientRepository.GetLogPolizaClienteByNoDocumento(noDocumento)); }