Example #1
0
 public MailTaskReminderHandler(IAmAMailGateway mailGateway, IAmACommandProcessor commandProcessor)
 {
     _mailGateway      = mailGateway;
     _commandProcessor = commandProcessor;
 }
 public MailTaskReminderHandler(IAmAMailGateway mailGateway, ILog logger) : base(logger)
 {
     _mailGateway = mailGateway;
 }
Example #3
0
 public MailTaskReminderHandler(IAmAMailGateway mailGateway, IAmACommandProcessor commandProcessor, ILog logger)
     : base(logger)
 {
     _mailGateway      = mailGateway;
     _commandProcessor = commandProcessor;
 }
Example #4
0
 public MailTaskReminderHandler(IAmAMailGateway mailGateway, IAmACommandProcessor commandProcessor)
     : this(mailGateway, commandProcessor, LogProvider.For <MailTaskReminderHandler>())
 {
 }
 public MailTaskReminderHandler(IAmAMailGateway mailGateway, IAmACommandProcessor commandProcessor)
     : this(mailGateway, commandProcessor, LogProvider.GetCurrentClassLogger())
 {
 }
 public OrderUpdateCommandHandler(IAmAMailGateway mailGateway, ILog logger) : base(logger)
 {
     _mailGateway = mailGateway;
 }