/// <summary>
 /// Initializes a new instance of the <see cref="LocationReportManager"/> class.
 /// </summary>
 /// <param name="locationReportData">The location report data.</param>
 public LocationReportManager(ILocationReportData locationReportData)
 {
     this.locationReportData = locationReportData;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LocationReportDataTests"/> class.
 /// </summary>
 public LocationReportDataTests()
 {
     this.locationReportRepository = new Mock<ILocationReportRepository>();
     this.locationReportData = new LocationReportData(this.locationReportRepository.Object);
 }