public NotificationController(
     IHubNotificationHelper notificationHelper,
     INotificationService notificationService)
 {
     this.notificationHelper  = notificationHelper;
     this.notificationService = notificationService;
 }
Beispiel #2
0
 public Handler(DataContext context, IWebHostEnvironment hostEnvironment, IMapper mapper, Nest.ElasticClient elasticClient, IUserAccessor userAccessor, IHubNotificationHelper hubNotification)
 {
     _context         = context;
     _hostEnvironment = hostEnvironment;
     _mapper          = mapper;
     _elasticClient   = elasticClient;
     _userAccessor    = userAccessor;
     _hubNotification = hubNotification;
 }
Beispiel #3
0
 public Handler(DataContext context, IMapper mapper, Nest.ElasticClient elasticClient, IConfiguration configuration, IUserAccessor userAccessor, IHubNotificationHelper hubNotification)
 {
     _context         = context;
     _mapper          = mapper;
     _elasticClient   = elasticClient;
     _configuration   = configuration;
     _userAccessor    = userAccessor;
     _hubNotification = hubNotification;
 }
Beispiel #4
0
 public AdminController(
     IUserService userService,
     IHubNotificationHelper notificationHelper,
     IEmailSender emailSender,
     SharedLocalizationService sharedLocalizer,
     IConfiguration configuration)
 {
     this.userService        = userService;
     this.notificationHelper = notificationHelper;
     this.emailSender        = emailSender;
     this.sharedLocalizer    = sharedLocalizer;
     this.configuration      = configuration;
 }
Beispiel #5
0
 public FundStorageController(
     IHubNotificationHelper notificationHelper,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.notificationHelper = notificationHelper;
     this.recentService      = recentService;
     this.service            = fundService;
     this.serviceSelect      = fundServiceSelect;
     this.sharedLocalizer    = sharedLocalizer;
 }