/// <summary>
 /// Initializes a new instance of the <see cref="GuestManifestsController"/> class.
 /// </summary>
 /// <param name="guestManager">The guest manager.</param>
 public GuestManifestsController(IGuestManifestManager guestManager)
 {
     this.guestManager = guestManager;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GuestManifestManagerTests"/> class.
 /// </summary>
 public GuestManifestManagerTests()
 {
     this.guestManifestData = new Mock<IGuestManifestData>();
     this.guestManifestManager = new GuestManifestManager(this.guestManifestData.Object);
 }