public MessagesController(
     IMessageService messageService,
     Services.Interfaces.IAuthorizationService authorizationService)
 {
     _messageService       = messageService;
     _authorizationService = authorizationService;
 }
 public UsersController(
     IUserService userService,
     Services.Interfaces.IAuthorizationService authorizationService)
 {
     _userService          = userService;
     _authorizationService = authorizationService;
 }
 public LobbyJoinRequestsController(
     ILobbyJoinRequestService lobbyJoinRequestService,
     Services.Interfaces.IAuthorizationService authorizationService)
 {
     _lobbyJoinRequestService = lobbyJoinRequestService;
     _authorizationService    = authorizationService;
 }
 public LobbiesController(
     ILobbyService lobbyService,
     Services.Interfaces.IAuthorizationService authorizationService)
 {
     _lobbyService         = lobbyService;
     _authorizationService = authorizationService;
 }
Beispiel #5
0
 public AuthorizationController(Services.Interfaces.IAuthorizationService authorizationService)
 {
     this.authorizationService = authorizationService;
     resourceManager           = new ResourceManager("TopTests.API.Resources.ResourceFile", typeof(ResourceFile).Assembly);
 }
 public AccountsController(Services.Interfaces.IAuthorizationService authorizationService)
 {
     _authorizationService = authorizationService;
 }