/// <summary>
 /// Initializes a new instance of the <see cref="ReconciliationReportsController"/> class.
 /// </summary>
 /// <param name="reconciliationReportManager">The reconciliation report manager.</param>
 public ReconciliationReportsController(IReconciliationReportManager reconciliationReportManager)
 {
     this.reconciliationReportManager = reconciliationReportManager;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ReconciliationReportTests" /> class.
 /// </summary>
 public ReconciliationReportTests()
 {
     this.reconciliationReportData = new Mock<IReconciliationReportData>();
     this.reconciliationReportManager = new ReconciliationReportManager(this.reconciliationReportData.Object);
 }