コード例 #1
0
 public NotificationService(IInternalNotificationService internalNotificationService,
                            INotificationOptionsService notificationOptionsService, IAgentContextService agentContextService, EdoContext context)
 {
     _internalNotificationService = internalNotificationService;
     _notificationOptionsService  = notificationOptionsService;
     _agentContextService         = agentContextService;
     _context = context;
 }
コード例 #2
0
 public NotificationController(IAgentContextService agentContextService, INotificationService notificationService, INotificationOptionsService notificationOptionsService)
 {
     _agentContextService        = agentContextService;
     _notificationService        = notificationService;
     _notificationOptionsService = notificationOptionsService;
 }
コード例 #3
0
 public NotificationOptionsController(ICustomLogger <NotificationOptionsController> logger, INotificationOptionsService notificationOptionsService, IGetUserRequestIdentity getUserRequestIdentity)
 {
     this.notificationOptionsService = notificationOptionsService;
     this.getUserRequestIdentity     = getUserRequestIdentity;
     this.logger = logger;
 }
コード例 #4
0
 public NotificationController(IAdministratorContext administratorContext, INotificationService notificationService, INotificationOptionsService notificationOptionsService)
 {
     _administratorContext       = administratorContext;
     _notificationService        = notificationService;
     _notificationOptionsService = notificationOptionsService;
 }