Exemple #1
0
 public WordOrganizerService(
     [KeyFilter("MainTable")] CloudTable mainTable,
     IOxfordDictionaryClient oedClient)
 {
     this.mainTable = mainTable;
     this.oedClient = oedClient;
 }
Exemple #2
0
 public WordOrganizerService(
     [KeyFilter(Settings.Storage.Definitions)] CloudTable definitionsTable,
     [KeyFilter(Settings.Storage.WordReferences)] CloudTable wordReferencesTable,
     IOxfordDictionaryClient oedClient)
 {
     this.definitionsTable    = definitionsTable;
     this.wordReferencesTable = wordReferencesTable;
     this.oedClient           = oedClient;
 }
 public WeatherForecastController(ILogger <WeatherForecastController> logger,
                                  IOxfordDictionaryClient client)
 {
     _logger     = logger;
     this.client = client;
 }