public AuthenticationService(IProfileRepository profileRepository, IHashTokenService hashTokenService, ILog log) { this._profileRepository = profileRepository; this._hashTokenService = hashTokenService; this._log = log; }
public void TestInitialize() { this._profileRepository = Substitute.For <IProfileRepository>(); this._hashTokenService = Substitute.For <IHashTokenService>(); }
public AuthenticationService(IProfileRepository profileRepository, IHashTokenService hashTokenService) { this._profileRepository = profileRepository; this._hashTokenService = hashTokenService; }