/// <summary>
 /// Initializes a new instance of the <see cref="ExceptionReportDataTests"/> class.
 /// </summary>
 public ExceptionReportDataTests()
 {
     this.exceptionReportRepository = new Mock<IExceptionReportRepository>();
     this.exceptionReportData = new ExceptionReportData(this.exceptionReportRepository.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ExceptionReportManager"/> class.
 /// </summary>
 /// <param name="exceptionReportData">The exception report data.</param>
 public ExceptionReportManager(IExceptionReportData exceptionReportData)
 {
     this.exceptionReportData = exceptionReportData;
 }