public AuthenticationService(IProfileRepository profileRepository,
                              IHashTokenService hashTokenService,
                              ILog log)
 {
     this._profileRepository = profileRepository;
     this._hashTokenService  = hashTokenService;
     this._log = log;
 }
Beispiel #2
0
 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;
 }