Exemple #1
0
 public ManagePageNotificationService(
     IUserOptionsService userOptionsService,
     INewNotification newNotification)
 {
     _userOptionsService = userOptionsService;
     _newNotification    = newNotification;
 }
 public InviteAcceptPrivacyAgreementJob(
     IUserOptionsService userOptionsService,
     INewNotification newNotification,
     ILogger <InviteAcceptPrivacyAgreementJob> logger)
 {
     _userOptionsService = userOptionsService;
     _newNotification    = newNotification;
     _logger             = logger;
 }
 public ShowWelcomeJob(
     ILogger <ShowWelcomeJob> logger,
     IApplicationInsights applicationInsights,
     IIndexedDbRepo <AfMetadata, string> afMetadataRepo,
     IOptions <StaticUrlOptions> staticUrlOptions,
     INewNotification newNotification)
 {
     _logger = logger;
     _applicationInsights = applicationInsights;
     _afMetadataRepo      = afMetadataRepo;
     _staticUrlOptions    = staticUrlOptions;
     _newNotification     = newNotification;
 }