/// <summary>
 /// Initializes a new instance of the <see cref="PortManningDataTests"/> class.
 /// </summary>
 public PortManningDataTests()
 {
     this.shipRepository = new Mock<IShipRepository>();
     this.crewRepository = new Mock<ICrewRepository>();
     this.portManningData = new PortManningData(this.shipRepository.Object, this.crewRepository.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PortManningManager"/> class.
 /// </summary>
 /// <param name="portManningData">The port manning synchronize data.</param>
 public PortManningManager(IPortManningData portManningData)
 {
     this.portManningData = portManningData;
 }