Example #1
0
        private void carregarDados()
        {
            nEstoque obj = new nEstoque();

            DataTable dtDadosA = obj.consultarEstoquesProxVencimento();

            DataTable dtIngredientes = new DataTable();

            dtIngredientes.Columns.Add("cd_ingrediente");

            foreach (DataRow dtRow in dtDadosA.Rows)
            {
                litIngredientesValidade.Text += dtRow["ds_ingrediente"].ToString() + " - " + Convert.ToDateTime(dtRow["dt_validade"]).ToString("dd/MM/yyyy") + "<br />";

                if (dtIngredientes.Select("cd_ingrediente = " + dtRow["cd_ingrediente"].ToString()).Length == 0)
                {
                    dtIngredientes.Rows.Add(dtRow["cd_ingrediente"].ToString());
                }
            }

            foreach (DataRow dtRow in dtIngredientes.Rows)
            {
                nPrato objP = new nPrato();
                objP.cd_ingrediente_pesquisa = Convert.ToInt32(dtRow["cd_ingrediente"].ToString());
                DataTable dtPratos = objP.EfetuarConsulta().Tables[0];
                foreach (DataRow dtRowP in dtPratos.Rows)
                {
                    if (!litPratosSugeridos.Text.Contains(dtRowP["ds_prato"].ToString()))
                    {
                        litPratosSugeridos.Text += dtRowP["ds_prato"].ToString() + "<br />";
                    }
                }
            }
        }
Example #2
0
        protected void btnConsultar_ServerClick(object sender, EventArgs e)
        {
            nPrato objEst = new nPrato
            {
                ds_prato = txtDescricaoPesquisa.Value,
                ds_ingrediente_pesquisa = txtDescricaoIngredientePesquisa.Value
            };

            DataSet ds = objEst.EfetuarConsulta();

            popularGrid(gvDados, ds.Tables[0]);
        }