Exemple #1
0
 public BranchAppService(IBranchServiceQueries branchServiceQueries, IBranchServiceCommand branchServiceCommand, IBranchServiceDomain branchServiceDomain, IGenericCommandRepository genericCommandRepository, IIDMAppService iDMAppService, INotificationAppService notificationAppService)
 {
     _branchServiceQueries     = branchServiceQueries;
     _branchServiceCommand     = branchServiceCommand;
     _branchServiceDomain      = branchServiceDomain;
     _genericCommandRepository = genericCommandRepository;
     _iDMAppService            = iDMAppService;
     _notificationAppService   = notificationAppService;
 }
 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;
 }
Exemple #3
0
 public BranchServiceDomain(IBranchServiceQueries branchQueries)
 {
     _branchQueries = branchQueries;
 }