示例#1
0
 public BudgetController(BudgetRepository budgetRepo, ExpenseRepository expenseRepo, BudgetConceptRepository conceptRepo, ExpenseGroupRepository groupRepo)
 {
     this.budgetRepo  = budgetRepo;
     this.expenseRepo = expenseRepo;
     this.conceptRepo = conceptRepo;
     this.groupRepo   = groupRepo;
 }
示例#2
0
 public BudgetConceptController(BudgetConceptRepository repo)
 {
     this.repo = repo;
 }