public void GetJsonFacturaVentaTest()
        {
            FacturaVentaDataMapper target = new FacturaVentaDataMapper(); // TODO: Inicializar en un valor adecuado
            string expected = string.Empty;                               // TODO: Inicializar en un valor adecuado
            string actual;

            actual = target.GetJsonFacturaVenta();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Compruebe la exactitud de este método de prueba.");
        }
Esempio n. 2
0
        public string downloadFacturaVenta(long?lastModifiedDate)
        {
            string respuesta = null;

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

                respuesta = dataMapper.GetJsonFacturaVenta(lastModifiedDate);

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