// GET: Budgets/Create
 public ActionResult Create()
 {
     ViewBag.listaAreas   = _area.GetAll();
     ViewBag.listaCuentas = _accountingAccount.GetAll();
     return(View());
 }
Exemplo n.º 2
0
 // GET: AccountingAccounts
 public ActionResult Index()
 {
     return(View(_db.GetAll()));
 }