/// <summary>
 /// Initializes a new instance of the <see cref="CrewManifestManagerTests"/> class.
 /// </summary>
 public CrewManifestManagerTests()
 {
     this.crewManifestData = new Mock<ICrewManifestData>();
     this.crewManifestManager = new CrewManifestManager(this.crewManifestData.Object);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CrewManifestsController"/> class.
 /// </summary>
 /// <param name="crewManifestManager">The crew manifest manager.</param>
 public CrewManifestsController(ICrewManifestManager crewManifestManager)
 {
     this.crewManifestManager = crewManifestManager;
 }