Exemplo n.º 1
0
 public TwitterRepository(
     IHttpClientFactory httpClientFactory,
     IOptions <TwitterOptions> options)
 {
     _options           = options.Value;
     _httpClientFactory = httpClientFactory;
 }
Exemplo n.º 2
0
 public BaseTwitterResponse(
     Tweet tweet,
     ITwitterOptions twitterOptions)
 {
     Tweet          = tweet;
     TwitterOptions = twitterOptions;
 }
Exemplo n.º 3
0
 public DefaultResponse(
     Tweet tweet,
     ITwitterOptions twitterOptions)
     : base(
         tweet,
         twitterOptions)
 {
 }
Exemplo n.º 4
0
 public UnknownResponse(
     Tweet tweet,
     ITwitterOptions twitterOptions)
     : base(
         tweet,
         twitterOptions)
 {
 }
Exemplo n.º 5
0
 public RollResponse(
     Tweet tweet,
     ITwitterOptions twitterOptions)
     : base(
         tweet,
         twitterOptions)
 {
 }
 public HashtagResponseFactory(
     IOptions <TwitterOptions> options)
 {
     _options = options.Value;
 }