Пример #1
0
 public TumblrService(
     IAzureStorage azureStorage,
     ICommand readEntityCommand,
     ICommand readEntitiesCommand,
     ISasService sasService)
 {
     _azureStorage        = azureStorage;
     _readEntityCommand   = readEntityCommand;
     _readEntitiesCommand = readEntitiesCommand;
     _sasService          = sasService;
 }
Пример #2
0
 public SasCommentService(
     IAzureStorage azureStorage,
     ICommand createCommentCommand,
     ITumblrService tumblrService,
     IUriFactory uriFactory,
     ISasService sasService)
 {
     _azureStorage         = azureStorage;
     _createCommentCommand = createCommentCommand;
     _tumblrService        = tumblrService;
     _uriFactory           = uriFactory;
     _sasService           = sasService;
 }
Пример #3
0
 public FavoriteController(ISasService sasService)
 {
     _sasService = sasService;
 }
Пример #4
0
 public CachedSasService(ISasService sasService, ICache cache, ICacheKeyFactory cacheKeyFactory)
 {
     _sasService      = sasService;
     _cache           = cache;
     _cacheKeyFactory = cacheKeyFactory;
 }
Пример #5
0
 public TokenApiController(ISasService sasService)
 {
     _sasService = sasService;
 }