Exemplo n.º 1
0
 public AccountController(userNS.AuthenticationService authenticationService, LoginSessionService loginSessionService) : base()
 {
     _authenticationService = authenticationService;
     _loginSessionService   = loginSessionService;
 }
Exemplo n.º 2
0
 public void Setup()
 {
     _loginSessionRepositoryMock = new Mock <ILoginSesssionRepository>();
     _service = new LoginSessionService(_loginSessionRepositoryMock.Object);
 }