/// <summary>
 /// Initializes a new instance of the <see cref="DepartureExceptionReportManagerTests"/> class.
 /// </summary>
 public DepartureExceptionReportManagerTests()
 {
     this.departureExceptionReportData = new Mock<IDepartureExceptionReportData>();
     this.departureExceptionReportManager = new DepartureExceptionReportManager(this.departureExceptionReportData.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DepartureExceptionReportsController"/> class.
 /// </summary>
 /// <param name="departureExceptionManifestManager">The departure exception manifest manager.</param>
 public DepartureExceptionReportsController(IDepartureExceptionReportManager departureExceptionManifestManager)
 {
     this.departureExceptionManifestManager = departureExceptionManifestManager;
 }