/// <summary>
 /// Initializes a new instance of the <see cref="ShipTimeDataTests"/> class.
 /// </summary>
 public ShipTimeDataTests()
 {
     this.shipTimeRepository = new Mock<IShipTimeRepository>();
     this.shipTimeData = new ShipTimeData(this.shipTimeRepository.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ShipTimeManager"/> class.
 /// </summary>
 /// <param name="shipTimeRepository">The ship time data.</param>
 public ShipTimeManager(IShipTimeData shipTimeRepository)
 {
     this.shipTimeRepository = shipTimeRepository;
 }