コード例 #1
0
 public TenderJobSerivce(INotificationAppService notifayAppService, IGenericCommandRepository genericCommandRepository, ITenderQueries tenderQueries, ITenderCommands tenderCommands)
 {
     _notifayAppService        = notifayAppService;
     _genericCommandRepository = genericCommandRepository;
     _tenderQueries            = tenderQueries;
     _tenderCommands           = tenderCommands;
 }
コード例 #2
0
 public CommunicationRequestAppJobService(ICommunicationRequestJobQueries communicationRequestJobQueries, IGenericCommandRepository genericCommandRepository,
                                          INotificationJobAppService notificationJobAppService)
 {
     _communicationRequestJobQueries = communicationRequestJobQueries;
     _genericCommandRepository       = genericCommandRepository;
     _notificationJobAppService      = notificationJobAppService;
 }
コード例 #3
0
 public VerificationService(IGenericCommandRepository genericCommandRepository, IVerificationQueries verificationQueries, INotificationAppService notificationAppService, IHttpContextAccessor httpContextAccessor, ITenderDomainService tenderDomainService, IOptionsSnapshot <RootConfigurations> optionsSnapshot)
 {
     _verificationQueries      = verificationQueries;
     _genericCommandRepository = genericCommandRepository;
     _httpContextAccessor      = httpContextAccessor; _tenderDomainService = tenderDomainService;
     _notificationAppService   = notificationAppService;
     _configuration            = optionsSnapshot.Value;
 }
コード例 #4
0
ファイル: LookupService.cs プロジェクト: lulzzz/UITest-POC
 public LookUpService(ILookUpServiceQueries lookupServiceQueries, IMapper mapper, IGenericCommandRepository genericrepository, IIDMAppService idmAppService, ISMEASizeInquiryProxy sMEASizeInquiryProxy)
 {
     _mapper = mapper;
     _lookupServiceQueries = lookupServiceQueries;
     _genericrepository    = genericrepository;
     _idmAppService        = idmAppService;
     _sMEASizeInquiryProxy = sMEASizeInquiryProxy;
 }
コード例 #5
0
 public CommitteeAppService(ICommitteeDomainService committeeDomainService, IGenericCommandRepository genericCommandRepository, ICommitteeQueries committeeQueries, IIDMAppService iDMAppService, INotificationAppService notificationAppService)
 {
     _committeeDomainService   = committeeDomainService;
     _committeeQueries         = committeeQueries;
     _genericCommandRepository = genericCommandRepository;
     _iDMAppService            = iDMAppService;
     _notificationAppService   = notificationAppService;
 }
コード例 #6
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;
 }
コード例 #7
0
 public TenderAppJobService(IIDMJobQueries iDMJobQueries, IQuantityTemplatesProxy quantityTemplatesProxy, ITenderJobQueries tenderQueries, IGenericCommandRepository genericCommandRepository,
                            ISRMFrameworkAgreementManageProxy sRMFrameworkAgreementManageProxy, INotificationJobAppService notificationJobAppService)
 {
     _templatesProxy                   = quantityTemplatesProxy;
     _tenderQueries                    = tenderQueries;
     _genericCommandRepository         = genericCommandRepository;
     _sRMFrameworkAgreementManageProxy = sRMFrameworkAgreementManageProxy;
     _notificationJobAppService        = notificationJobAppService;
     _idmjobqueries                    = iDMJobQueries;
 }
コード例 #8
0
 public PrePlanningAppService(ITenderQueries tenderQueries, IPrePlanningDomainService prePlanningDomainService, IGenericCommandRepository genericCommandRepository, IPrePlanningQueries prePlanningQueries, /*IIDMAppService iDMAppService,*/ INotificationAppService notificationAppService, IHttpContextAccessor httpContextAccessor, IVerificationService verification)
 {
     _tenderQueries            = tenderQueries;
     _httpContextAccessor      = httpContextAccessor;
     _prePlanningDomainService = prePlanningDomainService;
     _prePlanningQueries       = prePlanningQueries;
     _genericCommandRepository = genericCommandRepository;
     _notificationAppService   = notificationAppService;
     _verification             = verification;
 }
コード例 #9
0
 public ManageUsersAssignationAppService(IBranchServiceDomain branchServiceDomain, ICommitteeDomainService committeeDomainService, IGenericCommandRepository genericCommandRepository, IIDMAppService iDMAppService, IIDMQueries iDMQueries, INotificationAppService notificationAppService, IHttpContextAccessor httpContextAccessor)
 {
     _branchServiceDomain      = branchServiceDomain;
     _genericCommandRepository = genericCommandRepository;
     _iDMAppService            = iDMAppService;
     _iDMQueries             = iDMQueries;
     _committeeDomainService = committeeDomainService;
     _notificationAppService = notificationAppService;
     _httpContextAccessor    = httpContextAccessor;
 }
コード例 #10
0
ファイル: BlockAppService.cs プロジェクト: lulzzz/UITest-POC
 public BlockAppService(IAppDbContext context, INotificationAppService notificationAppService, IMapper mapper, IIDMAppService iDMAppService, IBlockQueries blockQueries, IBlockCommands blockCommands, IGenericCommandRepository genericrepository, IYasserProxy yesserProxy, ISupplierQueries supplierQueries, IIDMQueries iDMQueries, IVerificationService verification, INotificationQueries notificationQueries)
 {
     _notificationAppService = notificationAppService;
     _blockCommands          = blockCommands;
     _blockQueries           = blockQueries;
     _genericrepository      = genericrepository;
     _mapper          = mapper;
     _supplierQueries = supplierQueries;
     _iDMAppService   = iDMAppService;
     _verification    = verification;
     _iDMQueries      = iDMQueries;
 }
コード例 #11
0
 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;
 }
コード例 #12
0
 public ModelService(IMapper mapper,
                     IGenericCommandRepository <Model> modelCommandRepository,
                     IGenericQueryRepository <Model> modelQueryRepository,
                     IGenericQueryRepository <Field> fieldQueryRepository,
                     IGenericQueryRepository <User> userQueryRepository)
 {
     this.mapper = mapper;
     this.modelCommandRepository = modelCommandRepository;
     this.modelQueryRepository   = modelQueryRepository;
     this.fieldQueryRepository   = fieldQueryRepository;
     this.userQueryRepository    = userQueryRepository;
 }
コード例 #13
0
 public SourceService(IMapper mapper,
                      IGenericCommandRepository <Source> sourceCommandRepository,
                      IGenericQueryRepository <Source> sourceQueryRepository,
                      IGenericQueryRepository <User> userQueryRepository,
                      IGenericQueryRepository <Model> modelQueryRepository)
 {
     this.mapper = mapper;
     this.sourceQueryRepository   = sourceQueryRepository;
     this.sourceCommandRepository = sourceCommandRepository;
     this.userQueryRepository     = userQueryRepository;
     this.modelQueryRepository    = modelQueryRepository;
 }
コード例 #14
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;
 }
コード例 #15
0
 public AnnouncementListJobAppService(IAnnouncementListJobQueries announcementQueires, IGenericCommandRepository genericCommandRepository)
 {
     _announcementQueires      = announcementQueires;
     _genericCommandRepository = genericCommandRepository;
 }
コード例 #16
0
 public BillJobAppService(IBillingProxy billingProxy, IGenericCommandRepository genericCommandRepository, IBillJobQueries billQueries)
 {
     _billProxy = billingProxy;
     _genericCommandRepository = genericCommandRepository;
     _billQueries = billQueries;
 }