Example #1
0
        public string CarregarDespesa(int codDespesa)
        {
            DespesaBLL desBLL = new DespesaBLL();

            ViewBag.StatusDespesa = desBLL.ObterStatusDespesa().ToString();
            ViewBag.listaFormaPag = desBLL.ObterFormaPag().ToString();

            return(desBLL.CarregarDespesa(codDespesa).ToString());
        }