Esempio n. 1
0
 public GameCredentialService(IGameCredentialRepository gameCredentialRepository, IGameAuthenticationService gameAuthenticationService)
 {
     _gameCredentialRepository  = gameCredentialRepository;
     _gameAuthenticationService = gameAuthenticationService;
 }
Esempio n. 2
0
 public GameAuthenticationsController(IGameAuthenticationService gameAuthenticationService, IGameCredentialService gameCredentialService, IMapper mapper)
 {
     _gameAuthenticationService = gameAuthenticationService;
     _gameCredentialService     = gameCredentialService;
     _mapper = mapper;
 }
Esempio n. 3
0
 public LoginController(IGameAuthenticationService authenticationService, ITokenService tokenService)
 {
     _authenticationService = authenticationService;
     _tokenService          = tokenService;
 }