Ejemplo n.º 1
0
 public Startup(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
Ejemplo n.º 2
0
 public Startup(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
Ejemplo n.º 3
0
 public CurrentUserController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
Ejemplo n.º 4
0
 public ReposController(IGithubApiDataCacheService githubApiDataCache)
 {
     _githubApiDataCache = githubApiDataCache ?? new GithubApiDataCacheService();
 }
 public EmailAddressesController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
Ejemplo n.º 6
0
 public CurrentUserController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }
Ejemplo n.º 7
0
 public ReposController(IGithubApiDataCacheService githubApiDataCache)
 {
     _githubApiDataCache = githubApiDataCache ?? new GithubApiDataCacheService();
 }
 public EmailAddressesController(IGithubApiDataCacheService apiDataCacheService)
 {
     _apiDataCacheService = apiDataCacheService ?? new GithubApiDataCacheService();
 }