Ejemplo n.º 1
0
        private async Task carregaPendente(List <Pendente> list)
        {
            try
            {
                PendenteBLL pendenteBLL = new PendenteBLL();
                if (list == null)
                {
                    list = await pendenteBLL.listAsyncAll();
                }

                Util.CarregaControle(lbPendente, list, false, "Nome", "id", "");
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Método responsável por popular todas as questões.
        /// </summary>
        public async Task PopulaQuestion3()
        {
            PopularDropDownPendente(await pendenteBLL.listAsyncAll());

            PopularDropDownRespDescumprimento(await respDescumprimentoBLL.listAsyncAll());
        }