Ejemplo n.º 1
0
 public UserBudgetsAppService(ExpensesTrackerContext context,
                              UserBudgetsDomainService budgetDomainService)
 {
     _context             = context ?? throw new ArgumentNullException("context");
     _budgetDomainService = budgetDomainService;
 }
Ejemplo n.º 2
0
 public RetrievingBudgetsTests()
 {
     _userBudgetDomainService = new UserBudgetsDomainService();
 }