コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AuthenticateUserManager" /> class.
 /// </summary>
 /// <param name="authenticateUserData">The authenticate user data.</param>
 /// <param name="crewData">The crew data.</param>
 public AuthenticateUserManager(IAuthenticateUserData authenticateUserData, ICrewData crewData)
 {
     this.authenticateUserData = authenticateUserData;
     this.crewMemberData = crewData;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AuthenticateUserDataTests"/> class.
 /// </summary>
 public AuthenticateUserDataTests()
 {
     this.authenticateUserRepository = new Mock<IAuthenticateUserRepository>();
     this.authenticateUserData = new AuthenticateUserData(this.authenticateUserRepository.Object);
 }