Exemple #1
0
        public PDFInformeRendimentos GerarRelatorioPorReferenciaOID(decimal referencia, string CD_SISTEMA = null)
        {
            try
            {
                var informe = new HeaderInfoRendProxy().BuscarPorOid(referencia);

                return(GerarPDF(informe, CD_SISTEMA));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Exemple #2
0
        public PDFInformeRendimentos GerarRelatorioPorReferenciaAnoCalendario(string Cpf, decimal referencia, bool pensionista = false, string CD_SISTEMA = null)
        {
            try
            {
                var informe = new HeaderInfoRendProxy().BuscarPorCpfReferencia(Cpf, referencia, pensionista);

                return(GerarPDF(informe, CD_SISTEMA));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }