コード例 #1
0
 public HousingBudgetService(IBudgetEvaluator budgetEvaluator,
                             ILoanPreferencesRepository loanPreferencesRepository,
                             ISavedListingsRepository savedListingsRepository,
                             IListingsEvaluator listingsEvaluator)
 {
     this.budgetEvaluator           = budgetEvaluator;
     this.loanPreferencesRepository = loanPreferencesRepository;
     this.savedListingsRepository   = savedListingsRepository;
     this.listingsEvaluator         = listingsEvaluator;
 }
コード例 #2
0
 public SavedListingsController(ISavedListingsRepository savedListingsRepository)
 {
     this.savedListingsRepository = savedListingsRepository;
 }