public HttpContentProcessor(IHttpContentService contentService)
 {
     this.ContentService = contentService;
 }
示例#2
0
 protected CrudChannelService(ISlackHttpService httpService, IHttpContentService httpContentService)
 {
     _httpContentService = httpContentService ?? throw new ArgumentNullException(nameof(httpContentService));
     _httpService        = httpService ?? throw new ArgumentNullException(nameof(httpService));
 }