/// <summary>
 /// Initializes a new instance of the <see cref="AuthenticateUserController"/> class.
 /// </summary>
 /// <param name="authenticateUserManager">The authenticate user manager.</param>
 public AuthenticateUserController(IAuthenticateUserManager authenticateUserManager)
 {
     this.authenticateUserManager = authenticateUserManager;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AuthenticateUserManagerTests"/> class.
 /// </summary>
 public AuthenticateUserManagerTests()
 {
     this.authenticateUserData = new Mock<IAuthenticateUserData>();
     this.crewData = new Mock<ICrewData>();
     this.authenticateUserManager = new AuthenticateUserManager(this.authenticateUserData.Object, this.crewData.Object);
 }