Esempio n. 1
0
 public GetCommand(GetOptions options, IAzureClient azureClient, IOutput output, IUrlStore urlStore)
 {
     _options     = options;
     _azureClient = azureClient;
     _output      = output;
     _urlStore    = urlStore;
 }
Esempio n. 2
0
 public SetCommand(SetOptions options, ReleaseTransformer releaseTransformer, VariableContainerTransformer variableContainerTransformer, IUrlStore urlStore, IAzureClient azureClient, IOutput output)
 {
     _options                      = options;
     _releaseTransformer           = releaseTransformer;
     _variableContainerTransformer = variableContainerTransformer;
     _urlStore                     = urlStore;
     _azureClient                  = azureClient;
     _output = output;
 }
Esempio n. 3
0
 public UrlController(ILoggerFactory loggerFactory, ISlotStorage slotStorage, IUrlStore urlStore)
 {
     _logger      = loggerFactory.CreateLogger <UrlController>();
     _slotStorage = slotStorage;
     _urlStore    = urlStore;
 }
Esempio n. 4
0
 public HomeController(IUrlStore urlStore)
 {
     _urlStore = urlStore;
 }