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