public UsersController(ApplicationUserManager userManager, ApplicationRoleManager roleManager, IMapper mapper, IEmailNotificator emailNotificator)
 {
     this.userManager      = userManager;
     this.roleManager      = roleManager;
     this.mapper           = mapper;
     this.emailNotificator = emailNotificator;
 }
예제 #2
0
 public Monitoring(ILogger <Monitoring> logger, IMonitorRecorder monitorRecorder, IMonitorManager monitorManager, INotificator notificator, IEmailNotificator emailNotificator)
 {
     this.logger           = logger;
     this.monitorRecorder  = monitorRecorder;
     this.monitorManager   = monitorManager;
     this.notificator      = notificator;
     this.emailNotificator = emailNotificator;
 }
예제 #3
0
 public Notificator(IMonitorManager monitorManager, ApplicationUserManager applicationUserManager, IEmailNotificator emailNotificator, IQueueProvider queue, ILogger <Notificator> logger)
 {
     this.monitorManager         = monitorManager;
     this.applicationUserManager = applicationUserManager;
     this.emailNotificator       = emailNotificator;
     this.queue  = queue;
     this.logger = logger;
 }
예제 #4
0
 public Functions(Monitoring monitoring, INotificator notificator, IEmailNotificator emailNotificator, ILogger <Functions> logger, IServiceProvider serviceProvider, IConfiguration configuration)
 {
     this.monitoring       = monitoring;
     this.notificator      = notificator;
     this.emailNotificator = emailNotificator;
     this.logger           = logger;
     this.serviceProvider  = serviceProvider;
     this.configuration    = configuration;
 }
예제 #5
0
 public DocumentSignService(
     IEmailNotificator emailNotificator,
     BaseRepository <SignatureWarrant> signatureWarrantRepository,
     BaseRepository <IncomingSignatureRequest> signatureRequestRepository)
 {
     _emailNotificator           = emailNotificator;
     _signatureWarrantRepository = signatureWarrantRepository;
     _signatureRequestRepository = signatureRequestRepository;
 }
예제 #6
0
 public GlobalExceptionInterseptor(IEmailNotificator emailNotificator, AuditLogger logger)
 {
     _emailNotificator = emailNotificator;
     _logger           = logger;
 }