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