Esempio n. 1
0
 public AdminController(
     LeakContext context,
     IDataService dataService)
 {
     _cx          = context;
     _dataService = dataService;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 4
0
 public SearchService(IHashService hashService, LeakContext context)
 {
     _hashService = hashService;
     _cx          = context;
 }