public BudgetController(BudgetRepository budgetRepo, ExpenseRepository expenseRepo, BudgetConceptRepository conceptRepo, ExpenseGroupRepository groupRepo) { this.budgetRepo = budgetRepo; this.expenseRepo = expenseRepo; this.conceptRepo = conceptRepo; this.groupRepo = groupRepo; }
public BudgetConceptController(BudgetConceptRepository repo) { this.repo = repo; }