/// <summary>
 /// Page Load
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         var estabelecimantos = EstabelecimentoService.SelectIn();
         lstEstabelecimentosFiltrados = new List <BR_Estabelecimento>();
         if (estabelecimantos.Sucesso)
         {
             lstEstabelecimentos = (List <BR_Estabelecimento>)estabelecimantos.RetObj;
             lstEstabelecimentos.ForEach(x => lstEstabelecimentosFiltrados.Add(x));
             CarregaEstabelecimentos();
             Session["DataE"] = lstEstabelecimentos;
             CarregaTags();
             CarregaCaracterirticas();
         }
         else
         {
             Response.Write("Erro: " + estabelecimantos.MsgErro);
         }
     }
 }
示例#2
0
        /// <summary>
        /// Page Load
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                // Deixa o botão Home com Danger
                MudaCorBotao("btnLugar");

                var estabelecimantos = EstabelecimentoService.SelectIn();
                lstEstabelecimentosFiltrados = new List <BR_Estabelecimento>();
                if (estabelecimantos.Sucesso)
                {
                    lstEstabelecimentos = (List <BR_Estabelecimento>)estabelecimantos.RetObj;
                    lstEstabelecimentos.ForEach(x => lstEstabelecimentosFiltrados.Add(x));
                    CarregaEstabelecimentos();
                    Session["DataE"] = lstEstabelecimentos;
                }
                else
                {
                    Response.Write("Erro: " + estabelecimantos.MsgErro);
                }
            }
        }