/// <summary>
 /// Initializes a new instance of the <see cref="LocationReportManagerTests"/> class.
 /// </summary>
 public LocationReportManagerTests()
 {
     this.locationReportData = new Mock<ILocationReportData>();
     this.locationReportManager = new LocationReportManager(this.locationReportData.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LocationReportsController"/> class.
 /// </summary>
 /// <param name="locationReportManager">The location report manager.</param>
 public LocationReportsController(ILocationReportManager locationReportManager)
 {
     this.locationReportManager = locationReportManager;
 }