Exemplo n.º 1
0
 public SummaryCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator, IPostingClassificationMatcher postingClassificationMatcher)
 {
     DataPresenter                = dataPresenter;
     PostingAggregator            = postingAggregator;
     PostingClassificationMatcher = postingClassificationMatcher;
 }
Exemplo n.º 2
0
 public AverageCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator)
 {
     DataPresenter     = dataPresenter;
     PostingAggregator = postingAggregator;
 }
Exemplo n.º 3
0
 public MonthlyDeltaCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator, IPostingClassificationMatcher postingClassificationMatcher)
 {
     DataPresenter                = dataPresenter;
     PostingAggregator            = postingAggregator;
     PostingClassificationMatcher = postingClassificationMatcher;
 }