Ejemplo n.º 1
0
 public DashboardController(IPartyService partyService, IPartyGoerService partyGoerService, ILogService logService)
 {
     _partyService     = partyService;
     _partyGoerService = partyGoerService;
     _logService       = logService;
     _random           = new Random();
 }
Ejemplo n.º 2
0
 public PartyController(IPartyService partyService, IHubContext <PartyHub> hubContext, ILogService logService, IPartyGoerService partyGoerService)
 {
     _partyService     = partyService;
     _partyGoerService = partyGoerService;
     _partyHubContext  = hubContext;
     _logService       = logService;
 }
Ejemplo n.º 3
0
 public PartyHub(IPartyService partyService, ISpotifyHttpClient spotifyHttpClient, ILogService logService, IPartyGoerService partyGoerService)
 {
     _partyService      = partyService;
     _spotifyHttpClient = spotifyHttpClient;
     _logService        = logService;
     _partyGoerService  = partyGoerService;
 }
Ejemplo n.º 4
0
 public PartyService(IPartyRepository partyRepository, ISpotifyHttpClient spotifyHttpClient, ILogService logService, IPartyGoerService partyGoerService)
 {
     _partyRepository   = partyRepository;
     _spotifyHttpClient = spotifyHttpClient;
     _partyGoerService  = partyGoerService;
     _logService        = logService;
 }
Ejemplo n.º 5
0
 public PartyHandler(ISpotifyHttpClient spotifyHttpClient, IHubContext<PartyHub> partyHubContext, ILogService logService, IPartyService partyService, IPartyGoerService partyGoerService)
 {
     _logService = logService;
     _partyHubContext = partyHubContext;
     _spotifyHttpClient = spotifyHttpClient;
     _partyService = partyService;
     _partyGoerService = partyGoerService;
 }
Ejemplo n.º 6
0
 public AccountController(Domain.Contracts.IAuthenticationService authenticationService, IConfiguration configuration, IPartyService partyService,
                          ILogService logService, IPartyGoerService partyGoerService)
 {
     _authenticationService = authenticationService;
     _configuration         = configuration;
     _partyService          = partyService;
     _logService            = logService;
     _partyGoerService      = partyGoerService;
 }
Ejemplo n.º 7
0
 public PartyController(IPartyService partyService, ILogService logService, IPartyGoerService partyGoerService)
 {
     _partyService     = partyService;
     _partyGoerService = partyGoerService;
     _logService       = logService;
 }
Ejemplo n.º 8
0
 public UserController(IPartyGoerService partyGoerService, ILogService logService, ISpotifyAuthentication spotifyAuthentication)
 {
     _partyGoerService      = partyGoerService;
     _logService            = logService;
     _spotifyAuthentication = spotifyAuthentication;
 }
Ejemplo n.º 9
0
 public BrowseController(IBrowseSpotifyService browseSpotifyService, IPartyGoerService partyGoerService)
 {
     _browseSpotifyService = browseSpotifyService;
     _partyGoerService     = partyGoerService;
 }
Ejemplo n.º 10
0
 public AuthenticationService(ISpotifyHttpClient spotifyHttpClient, ISpotifyAuthentication spotifyAuthentication, IPartyGoerService partyGoerService)
 {
     _spotifyHttpClient     = spotifyHttpClient;
     _spotifyAuthentication = spotifyAuthentication;
     _partyGoerService      = partyGoerService;
 }
Ejemplo n.º 11
0
 public HomeController(ILogger <HomeController> logger, IPartyService partyService, IPartyGoerService partyGoerService)
 {
     _logger           = logger;
     _partyService     = partyService;
     _partyGoerService = partyGoerService;
 }
Ejemplo n.º 12
0
 public UserController(IPartyGoerService partyGoerService)
 {
     _partyGoerService = partyGoerService;
 }