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