Esempio n. 1
0
 public SubredditService(IHttpFactory httpFactory, IThingMapper thingMapper)
 {
     m_httpClient  = httpFactory.Create();
     m_thingMapper = thingMapper;
 }
Esempio n. 2
0
 public LinkService(IHttpFactory httpFactory, IThingMapper thingMapper)
 {
     m_thingMapper = thingMapper;
     m_client      = httpFactory.Create();
 }
Esempio n. 3
0
 public CommentsService(IHttpFactory httpFactory, IThingMapper thingMapper)
 {
     m_thingMapper = thingMapper;
     m_httpClient  = httpFactory.Create();
 }