public SendNotificationToCompleteSigningUp(INotificationMessageHandler notificationHandler,
                                            IOptions <CompleteOrganizationSigningUpPageInfo> signingUpPageOptions)
 {
     _notificationHandler  = notificationHandler;
     _signingUpPageOptions = signingUpPageOptions;
 }
 public SendNotificationsToCourseLearners(INotificationMessageHandler notificationHandler,
                                          ISendNotificationsToCourseLearnersRepo repo)
 {
     _notificationHandler = notificationHandler;
     _repo = repo;
 }
 public SendNotificationToResetPassword(INotificationMessageHandler notificationHandler,
                                        IOptions <ResetPasswordPageInfo> resetPage)
 {
     _notificationHandler = notificationHandler;
     _resetPageOptions    = resetPage;
 }
Example #4
0
 public SendNotificationToUsersToCompleteSigningUp(INotificationMessageHandler notificationHandler,
                                                   IOptions <CompleteUserSigningUpPageInfo> signingUpPage)
 {
     _notificationHandler  = notificationHandler;
     _signingUpPageOptions = signingUpPage;
 }
 public SendNotificationToTheUser(INotificationMessageHandler notificationHandler)
 {
     _notificationHandler = notificationHandler;
 }