Beispiel #1
0
        public async Task <CreditoDetalle> getCurp(string curp)
        {
            ConsultaSQL    sql   = new ConsultaSQL(_appSettings);
            CreditoDetalle datos = await sql.getCurp(curp);

            return(datos);
        }
Beispiel #2
0
        public async Task <DispoibilidadNombre> getDispNomGrupo(string nombreGrupo, int sistema)
        {
            ConsultaSQL         sql   = new ConsultaSQL(_appSettings);
            DispoibilidadNombre datos = await sql.getDispNombreGrupo(nombreGrupo, sistema);

            return(datos);
        }
Beispiel #3
0
    protected string ObtenerProductosInicio()
    {
        string      retorno  = "";
        ConsultaSQL consulta = new ConsultaSQL("SELECT * FROM Productos ORDER BY NewId()", "Gomitas");
        DataTable   dtTabla  = consulta.ObtenerTabla();

        foreach (DataRow row in dtTabla.Rows)
        {
            string imgUrl = "";
            //if (File.Exists("http://localhost:52780/productos/" + row["codigo"].ToString() + ".png"))
            //{
            //    imgUrl = "http://localhost:52780/productos/" + row["codigo"].ToString() + ".png";
            //}
            //else
            //{
            //    imgUrl = "/productos/img_nd.png";
            //}

            try
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:52780/productos/" + row["codigo"].ToString() + ".png");
                request.Credentials = System.Net.CredentialCache.DefaultCredentials;
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                imgUrl = "http://localhost:52780/productos/" + row["codigo"].ToString() + ".png";
            }
            catch
            {
                // image doesn't exist, set to default picture
                imgUrl = "/img/img_nd.png";
            }

            retorno += "<div class='grid_1_of_4 images_1_of_4'>";
            retorno += "	<a href = 'Preview.aspx?c="+ row["codigo"].ToString() + "'><img src='" + imgUrl + "' alt='' /></a>";
            retorno += "	<h2>"+ row["nombre"].ToString() + "</h2>";
            retorno += "    <div class='price-details'>";
            retorno += "	    <div class='price-number'>";
            if (decimal.Parse(row["p_promo"].ToString()) > 0)
            {
                retorno += "			<p><span class='rupees'>"+ String.Format("{0:C}", decimal.Parse(row["p_promo"].ToString())) + "</span></p>";
            }
            else
            {
                retorno += "			<p><span class='rupees'>"+ String.Format("{0:C}", decimal.Parse(row["p_lista"].ToString())) + "</span></p>";
            }

            retorno += "		</div>";
            retorno += "        <div class='add-cart'>";
            retorno += "			<h4><a href = 'Preview.aspx?c="+ row["codigo"].ToString() + "'><i class='fa fa-shopping-cart' aria-hidden='true'></i>&nbsp;Agregar</a></h4>";
            retorno += "			</div>";
            retorno += "        <div class='clear'></div>";
            retorno += "	</div>";
            retorno += "</div>";
        }

        return(retorno);
    }
Beispiel #4
0
    public string ObtenerHTMLCategorias()
    {
        string      retorno  = "";
        ConsultaSQL consulta = new ConsultaSQL("SELECT * FROM Categorias", "Gomitas");
        DataTable   dtTabla  = consulta.ObtenerTabla();

        foreach (DataRow row in dtTabla.Rows)
        {
            retorno += "<li><a href='#'>" + row["descrip"].ToString() + "</a></li>";
        }

        return(retorno);
    }