Exemplo n.º 1
0
        public async Task <Response <List <Documento> > > DocumentoGetAllReport(string tipo, string estado, DateTime fechaInicio, DateTime fechaFin, int numeroDocumento, string tipoPresu = null, Sede sede = null)
        {
            Response <List <Documento> > response = null;
            await Task.Run(() =>
            {
                response = documentoService.DocumentoGetAllReport(tipo, estado, fechaInicio, fechaFin, numeroDocumento, tipoPresu, sede);
            });

            return(response);
        }