public NotificationJobAppService(IGenericCommandRepository genericrepository, IIDMProxy iDMProxy, IMemoryCache cache, INotificationQueries iNotificationQuerie, IINotificationCommands notifayCommands, ILogger <NotificationAppService> logger,
                                  IMapper mapper, IOptionsSnapshot <RootConfigurations> optionsSnapShot)
 {
     _idmProxy                 = iDMProxy;
     _cache                    = cache;
     _iNotificationQuerie      = iNotificationQuerie;
     _notifayCommands          = notifayCommands;
     _logger                   = logger;
     _mapper                   = mapper;
     _configuration            = optionsSnapShot.Value;
     _genericCommandRepository = genericrepository;
 }
예제 #2
0
 public NotificationAppService(INotificationProxy notificationProxy, IIDMProxy iDMProxy, IMemoryCache cache, INotificationQueries iNotificationQuerie, IINotificationCommands notifayCommands, IGenericCommandRepository genericrepository, ILogger <NotificationAppService> logger,
                               IMapper mapper, IBranchServiceQueries BrancheQuery, ICommitteeQueries CommitteeQuery, IHttpContextAccessor httpContextAccessor, IOptionsSnapshot <RootConfigurations> optionsSnapShot)
 {
     _notificationProxy   = notificationProxy;
     _idmProxy            = iDMProxy;
     _cache               = cache;
     _genericrepository   = genericrepository;
     _iNotificationQuerie = iNotificationQuerie;
     _notifayCommands     = notifayCommands;
     _logger              = logger;
     _mapper              = mapper;
     _BranchQuery         = BrancheQuery;
     _CommitteeQuery      = CommitteeQuery;
     _configuration       = optionsSnapShot.Value;
     _httpContextAccessor = httpContextAccessor;
 }
 public NotificationResendJobService(INotificationQueries iNotificationQuerie, IINotificationCommands notificationCommands, INotificationProxy notificationProxy)
 {
     _NotificationQuerie   = iNotificationQuerie;
     _NotificationCommands = notificationCommands;
     _NotificationProxy    = notificationProxy;
 }