public AvcTransformer(IHttpService http, IModuleService moduleService, IGithubApi github) { _http = http; _moduleService = moduleService; _github = github; _vrefValidator = new VrefValidator(_http, _moduleService); }
public Uninstallation(IDownloadablesHostsRegistryProvider hostsRegistry, IInstallRegistryProvider installRegistry, IGithubApi githubApi, IKoinoniaLogger logger) { _hostsRegistry = hostsRegistry; _installsRegistry = installRegistry; _githubApi = githubApi; _logger = logger; }
private static async Task <ColumnsResource> GetColumn(IGithubApi githubClient, int projectId, GithubProject project) { var columns = await githubClient.GetColumns(projectId); var doneColumn = columns.First(column => column.Name == project.DoneColumnName); return(doneColumn); }
public GithubTransformer(IGithubApi api, bool matchPreleases) { if (api == null) throw new ArgumentNullException("api"); _api = api; _matchPreleases = matchPreleases; }
public GithubSiteContext(BlogSetting blog, IWebDocumentService webDocumentService, IGithubApi github, IEventAggregator eventAggregator) : base(blog, webDocumentService, eventAggregator) { this.github = github; }
public WebDocumentService( IGithubApi githubApi, Func<string, IMetaWeblogService> getMetaWeblog, IDialogService dialogService) { this.githubApi = githubApi; this.getMetaWeblog = getMetaWeblog; this.dialogService = dialogService; }
public WebDocumentService( IGithubApi githubApi, Func <string, IMetaWeblogService> getMetaWeblog, IDialogService dialogService) { this.githubApi = githubApi; this.getMetaWeblog = getMetaWeblog; this.dialogService = dialogService; }
public GithubControlViewModel(GlobalConfig globalConfig, IGithubApi githubApi, IDialogService dialogService) { _globalConfig = globalConfig; _githubApi = githubApi; _dialogService = dialogService; InitCommands(); LoadGithubInfos(); }
public OpenFromWebViewModel( IDialogService dialogService, Func<string, IMetaWeblogService> getMetaWeblog, ITaskSchedulerFactory taskScheduler, IGithubApi github) { this.dialogService = dialogService; this.getMetaWeblog = getMetaWeblog; this.taskScheduler = taskScheduler; this.github = github; }
public GithubTransformer(IGithubApi api, bool matchPreleases) { if (api == null) { throw new ArgumentNullException("api"); } _api = api; _matchPreleases = matchPreleases; }
public OpenFromWebViewModel( IDialogService dialogService, Func <string, IMetaWeblogService> getMetaWeblog, ITaskSchedulerFactory taskScheduler, IGithubApi github) { this.dialogService = dialogService; this.getMetaWeblog = getMetaWeblog; this.taskScheduler = taskScheduler; this.github = github; }
/// <summary> /// Initializes a new instance of the <see cref="SettingsController" /> class. /// </summary> /// <param name="resolver">The resolver.</param> /// <param name="mapper">The mapper.</param> /// <param name="templateRepo">The templateRepo.</param> /// <param name="embyApi">The embyApi.</param> /// <param name="radarrSync">The radarrCacher.</param> /// <param name="memCache">The memory cache.</param> /// <param name="githubApi">The memory cache.</param> public SettingsController(ISettingsResolver resolver, IMapper mapper, INotificationTemplatesRepository templateRepo, IEmbyApi embyApi, IRadarrSync radarrSync, ICacheService memCache, IGithubApi githubApi) { SettingsResolver = resolver; Mapper = mapper; TemplateRepository = templateRepo; _embyApi = embyApi; _radarrSync = radarrSync; _cache = memCache; _githubApi = githubApi; }
public SettingsController(ISettingsResolver resolver, IMapper mapper, INotificationTemplatesRepository templateRepo, IEmbyApi embyApi, ICacheService memCache, IGithubApi githubApi, IRecentlyAddedEngine engine) { SettingsResolver = resolver; Mapper = mapper; TemplateRepository = templateRepo; _embyApi = embyApi; _cache = memCache; _githubApi = githubApi; _recentlyAdded = engine; }
public SiteContextGenerator( IEventAggregator eventAggregator, IDialogService dialogService, IFileSystem fileSystem, IFileSystemWatcherFactory fileSystemWatcherFactory, Func<string, IMetaWeblogService> getMetaWeblog, IWebDocumentService webDocumentService, IGithubApi github) { this.eventAggregator = eventAggregator; this.dialogService = dialogService; this.fileSystem = fileSystem; this.fileSystemWatcherFactory = fileSystemWatcherFactory; this.getMetaWeblog = getMetaWeblog; this.webDocumentService = webDocumentService; this.github = github; }
public SiteContextGenerator( IEventAggregator eventAggregator, IDialogService dialogService, IFileSystem fileSystem, IFileSystemWatcherFactory fileSystemWatcherFactory, Func <string, IMetaWeblogService> getMetaWeblog, IWebDocumentService webDocumentService, IGithubApi github) { this.eventAggregator = eventAggregator; this.dialogService = dialogService; this.fileSystem = fileSystem; this.fileSystemWatcherFactory = fileSystemWatcherFactory; this.getMetaWeblog = getMetaWeblog; this.webDocumentService = webDocumentService; this.github = github; }
public UrlAnalyzer(IGithubApi githubApi, IUrlBuilder urlBuilder) { _githubApi = githubApi; _urlBuilder = urlBuilder; }
public ItemsDataSource(IGithubApi api) { this.api = api; }
public AvcTransformer(IHttpService http, IModuleService moduleService, IGithubApi github) { _http = http; _moduleService = moduleService; _github = github; }
public CalculateStatsUsingApiService(IGithubApi githubApi) { _githubApi = githubApi; }
public SpacedockTransformer(ISpacedockApi api, IGithubApi githubApi) { _api = api; _githubApi = githubApi; }
public AvcKrefTransformer(IHttpService http, IGithubApi github) { httpSvc = http; githubSrc = github; }
public MetaNetkanTransformer(IHttpService http, IGithubApi github) { _http = http; _github = github; }
public ApiController(IHttpClientFactory httpClientFactory) { githubApi = RestService.For <IGithubApi>(httpClientFactory.CreateClient(nameof(IGithubApi))); }
public DataStore(IMemoryCache cache, IGithubApi githubApi, IOptions <Options> options) { this.cache = cache; this.githubApi = githubApi; this.options = options.Value; }
public UrlAnalyzer(IGithubApi githubApi) : this(githubApi, null) { }