public EmailNotificationReminderJob(EFContext efContext,
                                     IEmailNotificationReminderService emailNotificationReminderService,
                                     IEmailNotificationBuilder emailNotificationBuilder,
                                     IPaperpusherClient paperpusherClient)
 {
     _efContext = efContext;
     _emailNotificationReminderService = emailNotificationReminderService;
     _emailNotificationBuilder         = emailNotificationBuilder;
     _paperpusherClient = paperpusherClient;
 }
Example #2
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;
 }