public IEnumerable <BudgetPlanList> GetList(int accountId)
 {
     return(_BudgetPlanService.GetBudgetPlans(accountId));
 }
예제 #2
0
        public ActionResult Index()
        {
            var model = _budgetPlanService.GetBudgetPlans(GetCurrentAccount());

            return(View(model));
        }