public GetCommand(GetOptions options, IAzureClient azureClient, IOutput output, IUrlStore urlStore) { _options = options; _azureClient = azureClient; _output = output; _urlStore = urlStore; }
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; }
public UrlController(ILoggerFactory loggerFactory, ISlotStorage slotStorage, IUrlStore urlStore) { _logger = loggerFactory.CreateLogger <UrlController>(); _slotStorage = slotStorage; _urlStore = urlStore; }
public HomeController(IUrlStore urlStore) { _urlStore = urlStore; }