示例#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;
 }
 public MonthlyDeltaCalculator(IDataPresenter dataPresenter, IPostingAggregator postingAggregator, IPostingClassificationMatcher postingClassificationMatcher)
 {
     DataPresenter                = dataPresenter;
     PostingAggregator            = postingAggregator;
     PostingClassificationMatcher = postingClassificationMatcher;
 }