Exemplo n.º 1
0
        public string downloadInfraestructura(long?lastModifiedDate)
        {
            string respuesta = null;

            if (lastModifiedDate != null)
            {
                InfraestructuraDataMapper dataMapper = new InfraestructuraDataMapper();

                respuesta = dataMapper.GetJsonInfraestructura(lastModifiedDate);

                if (String.IsNullOrEmpty(respuesta))
                {
                    respuesta = null;
                }
            }

            return(respuesta);
        }