public ApproveRejectComment(Authorization authorization, INotifyComment notifyComment, Mapper mapper, ITableClientFactory tableClientFactory)
 {
     _authorization      = authorization ?? throw new ArgumentNullException(nameof(authorization));
     _notifier           = notifyComment ?? throw new ArgumentNullException(nameof(notifyComment));
     _mapper             = mapper ?? throw new ArgumentNullException(nameof(mapper));
     _tableClientFactory = tableClientFactory ?? throw new ArgumentNullException(nameof(tableClientFactory));
 }
Beispiel #2
0
 public AddComment(Authorization authorization, INotifyComment notifyComment, Mapper mapper, ITableClientFactory tableClientFactory)
 {
     _authorization      = authorization;
     _notifier           = notifyComment;
     _mapper             = mapper;
     _tableClientFactory = tableClientFactory;
 }