Пример #1
0
 public SummaryCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator, IPostingClassificationMatcher postingClassificationMatcher)
 {
     DataPresenter                = dataPresenter;
     PostingAggregator            = postingAggregator;
     PostingClassificationMatcher = postingClassificationMatcher;
 }
Пример #2
0
 public AverageCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator)
 {
     DataPresenter     = dataPresenter;
     PostingAggregator = postingAggregator;
 }
Пример #3
0
 public MonthlyDeltaCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator, IPostingClassificationMatcher postingClassificationMatcher)
 {
     DataPresenter                = dataPresenter;
     PostingAggregator            = postingAggregator;
     PostingClassificationMatcher = postingClassificationMatcher;
 }