public ProcessIncomingExceptionCommand(IGetApplicationByTokenQuery getApplicationByToken,
                                        ErrorditeConfiguration configuration,
                                        IReceiveErrorCommand receiveErrorCommand,
                                        IExceptionRateLimiter exceptionRateLimiter,
                                        IMessageSender sender)
 {
     _getApplicationByToken = getApplicationByToken;
     _configuration         = configuration;
     _receiveErrorCommand   = receiveErrorCommand;
     _exceptionRateLimiter  = exceptionRateLimiter;
     _sender = sender;
 }
 public ReceiveErrorCommand(IGetApplicationQuery getApplicationQuery,
                            IReceptionServiceIssueCache receptionServiceIssueCache,
                            IGetApplicationByTokenQuery getApplicationByTokenQuery,
                            IAttachToNewIssueCommand attachToNewIssueCommand,
                            IAttachToExistingIssueCommand attachToExistingIssueCommand)
 {
     _getApplicationQuery          = getApplicationQuery;
     _receptionServiceIssueCache   = receptionServiceIssueCache;
     _getApplicationByTokenQuery   = getApplicationByTokenQuery;
     _attachToNewIssueCommand      = attachToNewIssueCommand;
     _attachToExistingIssueCommand = attachToExistingIssueCommand;
 }
Example #3
0
 public TestController(IGetApplicationByTokenQuery getApplicationByTokenQuery)
 {
     _getApplicationByTokenQuery = getApplicationByTokenQuery;
 }