コード例 #1
0
 public SasCommentService(
     IAzureStorage azureStorage,
     ICommand createCommentCommand,
     ITumblrService tumblrService,
     IUriFactory uriFactory,
     ISasService sasService)
 {
     _azureStorage         = azureStorage;
     _createCommentCommand = createCommentCommand;
     _tumblrService        = tumblrService;
     _uriFactory           = uriFactory;
     _sasService           = sasService;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: talexu/lvgaga
 public HomeController(ITumblrService tumblrServic)
 {
     _tumblrService = tumblrServic;
 }
コード例 #3
0
ファイル: CachedTumblrService.cs プロジェクト: talexu/lvgaga
 public CachedTumblrService(ITumblrService tumblrService, ICache cache, ICacheKeyFactory cacheKeyFactory)
 {
     _tumblrService   = tumblrService;
     _cache           = cache;
     _cacheKeyFactory = cacheKeyFactory;
 }
コード例 #4
0
 public PostIncrementalLoadingCollection(ITumblrService tumblr)
 {
     this.tumblr = tumblr;
 }