示例#1
0
 protected CrudChannelService(ISlackHttpService httpService, IHttpContentService httpContentService)
 {
     _httpContentService = httpContentService ?? throw new ArgumentNullException(nameof(httpContentService));
     _httpService        = httpService ?? throw new ArgumentNullException(nameof(httpService));
 }
示例#2
0
 protected CrudMemberService(ISlackHttpService httpService)
 {
     _httpService = httpService ?? throw new ArgumentNullException(nameof(httpService));
 }