public CountriesController(IMemoryPhotoService memoryPhotoService, WorldExplorerContext worldExplorerContext, IRepository <Country> countryRepo, IMappingRepository <CountryDto> repository, IMapper mapper) : base(repository) { _memoryPhotoService = memoryPhotoService; _worldExplorerContext = worldExplorerContext; _countryMapperRepo = repository; _mapper = mapper; _countryRepo = countryRepo; }
public SpotifyRepository(WorldExplorerContext worldExplorerContext, IMapper mapper) : base(worldExplorerContext, mapper) { _worldExplorerContext = worldExplorerContext; }
public AuthenticationService(IOptions <AppSettings> settings, WorldExplorerContext worldExplorerContext) { _worldExplorerContext = worldExplorerContext; _appSettings = settings.Value; }
public Repository(WorldExplorerContext worldExplorerContext) { _worldExplorerContext = worldExplorerContext; }
public UsersController(IOptions <AppSettings> appSettings, IUserService userService, WorldExplorerContext context) { _userService = userService; _context = context; }
public UserMappingRepository(WorldExplorerContext context, IMapper mapper) : base(context) { _mapper = mapper; }
public SpotifyPlaylistsController(IMappingRepository <SpotifyPlaylistDto> playlistMappingRepo, WorldExplorerContext worldExplorerContext) : base(playlistMappingRepo) { _playlistMappingRepo = playlistMappingRepo; _spotify = new Spotify(); _worldExplorerContext = worldExplorerContext; }
public UserService(IOptions <AppSettings> appSettings, WorldExplorerContext context) { _appSettings = appSettings.Value; _context = context; }
public CountryRepository(WorldExplorerContext worldExplorerContext, IMapper mapper) : base(worldExplorerContext, mapper) { }