public TenderJobSerivce(INotificationAppService notifayAppService, IGenericCommandRepository genericCommandRepository, ITenderQueries tenderQueries, ITenderCommands tenderCommands) { _notifayAppService = notifayAppService; _genericCommandRepository = genericCommandRepository; _tenderQueries = tenderQueries; _tenderCommands = tenderCommands; }
public CommunicationRequestAppJobService(ICommunicationRequestJobQueries communicationRequestJobQueries, IGenericCommandRepository genericCommandRepository, INotificationJobAppService notificationJobAppService) { _communicationRequestJobQueries = communicationRequestJobQueries; _genericCommandRepository = genericCommandRepository; _notificationJobAppService = notificationJobAppService; }
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; }
public LookUpService(ILookUpServiceQueries lookupServiceQueries, IMapper mapper, IGenericCommandRepository genericrepository, IIDMAppService idmAppService, ISMEASizeInquiryProxy sMEASizeInquiryProxy) { _mapper = mapper; _lookupServiceQueries = lookupServiceQueries; _genericrepository = genericrepository; _idmAppService = idmAppService; _sMEASizeInquiryProxy = sMEASizeInquiryProxy; }
public CommitteeAppService(ICommitteeDomainService committeeDomainService, IGenericCommandRepository genericCommandRepository, ICommitteeQueries committeeQueries, IIDMAppService iDMAppService, INotificationAppService notificationAppService) { _committeeDomainService = committeeDomainService; _committeeQueries = committeeQueries; _genericCommandRepository = genericCommandRepository; _iDMAppService = iDMAppService; _notificationAppService = notificationAppService; }
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 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; }
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; }
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; }
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; }
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; }
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; }
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; }
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 AnnouncementListJobAppService(IAnnouncementListJobQueries announcementQueires, IGenericCommandRepository genericCommandRepository) { _announcementQueires = announcementQueires; _genericCommandRepository = genericCommandRepository; }
public BillJobAppService(IBillingProxy billingProxy, IGenericCommandRepository genericCommandRepository, IBillJobQueries billQueries) { _billProxy = billingProxy; _genericCommandRepository = genericCommandRepository; _billQueries = billQueries; }