コード例 #1
0
 public IEnumerable <BudgetPlanList> GetList(int accountId)
 {
     return(_BudgetPlanService.GetBudgetPlans(accountId));
 }
コード例 #2
0
        public ActionResult Index()
        {
            var model = _budgetPlanService.GetBudgetPlans(GetCurrentAccount());

            return(View(model));
        }