/// <summary>
 /// Initializes a new instance of the <see cref="GuestManifestManager" /> class.
 /// </summary>
 /// <param name="guestManifestData">The guest manifest data.</param>
 public GuestManifestManager(IGuestManifestData guestManifestData)
 {
     this.guestManifestData = guestManifestData;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GuestManifestDataTests"/> class.
 /// </summary>
 public GuestManifestDataTests()
 {
     this.guestManifestRepository = new Mock<IGuestManifestRepository>();
     this.guestManifestData = new GuestManifestData(this.guestManifestRepository.Object);
 }