public EmailNotificationReminderJob(EFContext efContext,
                                     IEmailNotificationReminderService emailNotificationReminderService,
                                     IEmailNotificationBuilder emailNotificationBuilder,
                                     IPaperpusherClient paperpusherClient)
 {
     _efContext = efContext;
     _emailNotificationReminderService = emailNotificationReminderService;
     _emailNotificationBuilder         = emailNotificationBuilder;
     _paperpusherClient = paperpusherClient;
 }
 public PgPaperpusherNotifier(
     ILogger logger,
     IPgPurchaseOrderService purchaseOrderService,
     IPaperpusherClient paperpusherClient,
     ICostService costService
     )
 {
     _logger = logger;
     _purchaseOrderService = purchaseOrderService;
     _paperpusherClient    = paperpusherClient;
     _costService          = costService;
 }
Example #3
0
 public EmailNotificationService(IEmailNotificationBuilder emailNotificationBuilder, IPaperpusherClient paperPusherClient,
                                 IEmailNotificationReminderService reminderService,
                                 EFContext efContext,
                                 ICostUserService costUserService,
                                 IApprovalService approvalService)
 {
     _emailNotificationBuilder = emailNotificationBuilder;
     _paperPusherClient        = paperPusherClient;
     _reminderService          = reminderService;
     _efContext       = efContext;
     _costUserService = costUserService;
     _approvalService = approvalService;
 }
 public ActivityLogDeliveryJob(IActivityLogService service, IPaperpusherClient paperPusherClient)
 {
     _service           = service;
     _paperPusherClient = paperPusherClient;
 }