public AdminController( LeakContext context, IDataService dataService) { _cx = context; _dataService = dataService; }
public DataService( LeakContext context, IHashService hashService) { _cx = context; _hashService = hashService; }
public SearchController( LeakContext context, ISearchService searchService, IOptions <AppSecrets> appSecrets, IHashService hashService) { _appSecrets = appSecrets.Value; _cx = context; _searchService = searchService; this.hashService = hashService; }
public SearchService(IHashService hashService, LeakContext context) { _hashService = hashService; _cx = context; }