コード例 #1
0
ファイル: Startup.Auth.cs プロジェクト: codeimpossible/proggr
 public Startup(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
コード例 #2
0
ファイル: Startup.Auth.cs プロジェクト: codeimpossible/proggr
 public Startup(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
コード例 #3
0
 public CurrentUserController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
コード例 #4
0
 public ReposController(IGithubApiDataCacheService githubApiDataCache)
 {
     _githubApiDataCache = githubApiDataCache ?? new GithubApiDataCacheService();
 }
コード例 #5
0
 public EmailAddressesController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
コード例 #6
0
 public CurrentUserController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
コード例 #7
0
 public ReposController(IGithubApiDataCacheService githubApiDataCache)
 {
     _githubApiDataCache = githubApiDataCache ?? new GithubApiDataCacheService();
 }
コード例 #8
0
 public EmailAddressesController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }