示例#1
0
 public IndexModel(UserManager <User> userManager, IRequestService service, IApprovalService approvalService)
 {
     this.Model           = new IndexViewModel();
     this.userManager     = userManager;
     this.service         = service;
     this.approvalService = approvalService;
 }
 public ApprovalsController(UserManager <User> userManager, IApprovalService approvalService,
                            IRequestService requestService, IAlerter alerter)
 {
     this.userManager     = userManager;
     this.approvalService = approvalService;
     this.requestService  = requestService;
     this.alerter         = alerter;
 }
示例#3
0
 public DeliverableControllerMock(IUserService userService         = null, ILogService loggerService = null, IDeliverableService deliverableService = null,
                                  IProductService productService   = null, IPropertyService propertyService            = null, IIntergrationService _intergrationService = null,
                                  IBudgetService _iBudgetService   = null, ITrackApprovalService iTrackApprovalService = null, IImageService imageService                = null,
                                  IApprovalService approvalService = null, IInternationalService internationalService  = null)
     : base(userService, loggerService, deliverableService, productService, propertyService, _intergrationService, _iBudgetService, iTrackApprovalService,
            imageService, approvalService, internationalService)
 {
 }
示例#4
0
 public HomeController(IApprovalService approvalService, IProjectService projectService, IBaseDataService baseDataService, IUnitOfWorkAsync unitOfWork, IAppSettingService appSettingService)
 {
     _projectService    = projectService;
     _appSettingService = appSettingService;
     _approvalService   = approvalService;
     _baseDataService   = baseDataService;
     _unitOfWork        = unitOfWork;
 }
示例#5
0
 public ApprovalController(
     IUserService userService,
     IApprovalService approvalService,
     UserManager <User> userManager)
 {
     this.userService     = userService;
     this.approvalService = approvalService;
     this.userManager     = userManager;
 }
示例#6
0
 public ApprovalController(SignInManager <ExtendedIdentityUser> signInManager, UserManager <ExtendedIdentityUser> userManager,
                           ILogger <AccountController> logger, IQueryService queryService, IApprovalService approvalService)
 {
     _signInManager   = signInManager;
     _userManager     = userManager;
     _logger          = logger;
     _approvalService = approvalService;
     _queryService    = queryService;
     _mapper          = this.GetMapper();
 }
示例#7
0
 public ValuesController(IProductService productService,
                         IRequisitionService requisitionService,
                         IApprovalService approvalService,
                         IAdminService adminService)
 {
     this.productService     = productService;
     this.requisitionService = requisitionService;
     this.approvalService    = approvalService;
     this.adminService       = adminService;
 }
示例#8
0
 internal ReminderPendingTechnicalNotificationBuilder(IMapper mapper,
                                                      IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService,
                                                      IMetadataProviderService metadataProviderService,
                                                      IApprovalService approvalService,
                                                      AppSettings appSettings,
                                                      EFContext efContext,
                                                      IRegionsService regionsService) :
     base(mapper, uriHelper, costStageRevisionService, metadataProviderService, appSettings, efContext, regionsService)
 {
     _approvalService = approvalService;
 }
示例#9
0
 public ApprovalController(ICustomFieldService customFieldService, ICustomListDataService customListDataService, ICustomGroupService customGroupService, IBaseDataService baseDataService, ICustomDataService customDataService, ICustomListService customListService, ICustomFieldTypeService customFieldTypeService, IProjectService projectService, IApprovalService approvalService, IUnitOfWorkAsync unitOfWork)
 {
     _approvalService        = approvalService;
     _customDataService      = customDataService;
     _customFieldTypeService = customFieldTypeService;
     _baseDataService        = baseDataService;
     _customGroupService     = customGroupService;
     _customListDataService  = customListDataService;
     _customListService      = customListService;
     _customFieldService     = customFieldService;
     _unitOfWork             = unitOfWork;
 }
示例#10
0
 public HomeController(ISignatureService signatureService, IPhotographService photographService, IFingerprintImageService fingerprintImageService, ISyncJobHistoryService syncJobHistory, IApprovalService approvalService, IProjectService projectService, IBaseDataService baseDataService, IUnitOfWorkAsync unitOfWork, IAppSettingService appSettingService)
 {
     _projectService          = projectService;
     _appSettingService       = appSettingService;
     _syncJobHistory          = syncJobHistory;
     _approvalService         = approvalService;
     _baseDataService         = baseDataService;
     _signatureService        = signatureService;
     _photographService       = photographService;
     _fingerprintImageService = fingerprintImageService;
     _unitOfWork = unitOfWork;
 }
示例#11
0
 public EmailNotificationService(IEmailNotificationBuilder emailNotificationBuilder, IPaperpusherClient paperPusherClient,
                                 IEmailNotificationReminderService reminderService,
                                 EFContext efContext,
                                 ICostUserService costUserService,
                                 IApprovalService approvalService)
 {
     _emailNotificationBuilder = emailNotificationBuilder;
     _paperPusherClient        = paperPusherClient;
     _reminderService          = reminderService;
     _efContext       = efContext;
     _costUserService = costUserService;
     _approvalService = approvalService;
 }
示例#12
0
 public LgaService(IUnitOfWorkAsync unitOfWork, ILgaRepository repository, IUserProfileService userProfileService,
     IUserProfileRepository userProfileRepository, IUtilityService utilityService,
     IApprovalService approvalService, IWorkflowService workflowService, IWorkFlowSetupService workFlowSetupService)
 {
     _unitOfWork = unitOfWork;
     _repository = repository;
     _userProfileService = userProfileService;
     _userProfileRepository = userProfileRepository;
     _utilityService = utilityService;
     _approvalService = approvalService;
     _workflowService = workflowService;
     _workFlowSetupService = workFlowSetupService;
     Mapper.CreateMap<UserProfile, UserProfileItem>();
 }
示例#13
0
 internal RecalledNotificationBuilder(IMapper mapper,
                                      IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService, IApprovalService approvalService,
                                      ICostFormService costFormService, ICustomObjectDataService customObjectDataService,
                                      IMetadataProviderService metadataProviderService,
                                      AppSettings appSettings,
                                      EFContext efContext,
                                      IRegionsService regionsService) :
     base(mapper, uriHelper, costStageRevisionService, metadataProviderService, appSettings, efContext, regionsService)
 {
     _costStageRevisionService = costStageRevisionService;
     _approvalService          = approvalService;
     _costFormService          = costFormService;
     _customObjectDataService  = customObjectDataService;
 }
 public PurchaseOrderErrorResponseHandler(
     EFContext efContext,
     IApprovalService approvalService,
     ILogger logger,
     IEmailNotificationService emailNotificationService,
     ISupportNotificationService supportNotificationService
     )
 {
     _efContext                  = efContext;
     _approvalService            = approvalService;
     _logger                     = logger;
     _supportNotificationService = supportNotificationService;
     _emailNotificationService   = emailNotificationService;
 }
示例#15
0
 public PgPurchaseOrderResponseConsumer(EFContext efContext,
                                        ICustomObjectDataService customDataService,
                                        IMapper mapper,
                                        IApprovalService approvalService,
                                        IEmailNotificationService emailNotificationService,
                                        ICostActionService costActionService,
                                        IEventService eventService,
                                        IPgPaymentService pgPaymentService,
                                        IActivityLogService activityLogService)
 {
     _efContext                = efContext;
     _customDataService        = customDataService;
     _mapper                   = mapper;
     _approvalService          = approvalService;
     _emailNotificationService = emailNotificationService;
     _costActionService        = costActionService;
     _eventService             = eventService;
     _pgPaymentService         = pgPaymentService;
     _activityLogService       = activityLogService;
 }
示例#16
0
 public EmailNotificationBuilder(IMapper mapper,
                                 IApplicationUriHelper uriHelper, ICostStageRevisionService costStageRevisionService,
                                 IApprovalService approvalService, IRegionsService regionsService,
                                 IOptions <AppSettings> appSettings, ICostFormService costFormService,
                                 ICustomObjectDataService customObjectDataService,
                                 IPgPaymentService pgPaymentService,
                                 ICostStageService costStageService,
                                 IMetadataProviderService metadataProviderService,
                                 EFContext efContext)
 {
     _mapper    = mapper;
     _uriHelper = uriHelper;
     _costStageRevisionService = costStageRevisionService;
     _approvalService          = approvalService;
     _regionsService           = regionsService;
     _costFormService          = costFormService;
     _customObjectDataService  = customObjectDataService;
     _pgPaymentService         = pgPaymentService;
     _costStageService         = costStageService;
     _metadataProviderService  = metadataProviderService;
     _efContext   = efContext;
     _appSettings = appSettings.Value;
 }
示例#17
0
 public DropDownControllerMock(IUserService userService                = null, ILogService loggerService        = null, IProjectService projectService = null, IContractRequestService contractRequestService = null,
                               BudgetService budgetService             = null, IApprovalService approvalService = null, IInternationalService internationalService = null,
                               IDeliverableService iDeliverableService = null, IDeliverableServiceV2 deliverableServiceV2 = null, IFinanceService financeService   = null)
     : base(userService, loggerService, projectService, contractRequestService, budgetService, approvalService, internationalService, iDeliverableService, deliverableServiceV2, financeService)
 {
 }
 public DeliverableServiceV2Mock(IMasterVendorViewRepository masterVendorViewRepository = null,
                                 IGraphicHeaderRepository graphicsHeaderRepository      = null,
                                 IPropertyService propertyService     = null,
                                 ICommentRepository commentRepository = null,
                                 IDeliverableDateRepository deliverableDateRepository = null,
                                 IDeliverableRepository deliverableRepository         = null,
                                 IDeliverableCommentService icommentService           = null,
                                 ICommentTypeRepository commentTypeService            = null,
                                 ITalentRepository talentRepository = null,
                                 IDeliverableUserTitleMrmUserRepository deliverableUserTitleMrmUserRepository = null,
                                 IDeliverableSecondaryTargetRepostiory deliverableSecondaryTargetRepository   = null,
                                 IDeliverable_TalentRepository talentDeliverableRepository = null,
                                 IDeliverableStatusRepository deliverableStatusRepository  = null,
                                 IChannelTalentRepository channelTalentRepository          = null,
                                 IDeliverable_TalentRepository deliverableTalentRepository = null,
                                 ICalendarRepository calendarRepository = null,
                                 IUnitOfWork iunitOfWork = null,
                                 IDeliverable_VendorRepository deliverable_VendorRepository = null,
                                 ITrackService itrackService = null,
                                 IActivityTypeActivityStatusRepository activityTypeActivityStatusRepository = null,
                                 ITypeOfWorkRepository typeOfWorkRepository = null,
                                 ITypeOfWorkCategoryRepository typeOfWorkCategoryRepository = null,
                                 IScriptRepository scriptRepository = null,
                                 IChannelDeliverableGroupUserTitleRepository channelDeliverableGroupUserTitleRepository = null,
                                 IApprovalTypeChannelBudgetTypeMRMUserUserTitleRepository approvalTypeChannelBudgetTypeMRMUserUserTitleRepository = null,
                                 IDeliverableDateRepository deliverableDeliverableGroupDeliverableDateTypeRepository = null,
                                 IOffAirDesignRepository offAirDesignRepository = null,
                                 IDeliverableDateTypeRepository deliverableDateTypeRepository = null,
                                 IDeliverableInternationalDetailRepository deliverableInternationalDetailRepository = null,
                                 IDeliverableInternationalPathRepository deliverableInternationalPathRepository     = null,
                                 ICampaignRepository campaignRepository   = null,
                                 IUserTitleRepository userTitleRepository = null,
                                 IDeliverableGroupDeliverableDateTypeRepository deliverableGroupDeliverableDateTypeRepository = null,
                                 IOffAirDesignProductionMethodTypeRepository offAirDesignProductionMethodTypeRepository       = null,
                                 IProductionMethodCategoryRepository productionMethodCategoryRepository = null,
                                 IAssetGroupChannelHouseAdvertiserRepository assetGroupChannelHouseAdvertiserRepository = null,
                                 IPaidMediaRepository paidMediaRepository           = null,
                                 IGraphicHeaderRepository graphicHeaderRepository   = null,
                                 IGraphicElementRepository graphicElementRepository = null,
                                 IGraphicImageRepository graphicImageRepository     = null,
                                 IGraphicElementTypeGraphicPackageChannelRepository graphicElementTypeGraphicPackageChannelRepository = null,
                                 IDeliverableBudgetService budgetService = null,
                                 IPaidMediaInvoiceRepository paidMediaInvoiceRepository = null,
                                 IPaidMediaDetailRepository paidMediaDetailRepository   = null,
                                 IMusicRepository musicRepository = null,
                                 IMusicSubLibraryRepository musicSubLibraryRepository = null,
                                 IDeliverableScriptService scriptService = null,
                                 IDeliverableBudgetRepository deliverableBudgetRepository           = null,
                                 ITrackSearchRepository trackSearchRepository                       = null,
                                 IActivityStatusRepository activityStatusRepository                 = null,
                                 WBSFiscalYear_ChannelRepository wBSFiscalYear_ChannelRepository    = null,
                                 IDeliverableProductionMethodTypeRepository mopDeliverableRepositry = null,
                                 IDeliverableLineOfBusinessRepository lobRepositry                  = null,
                                 IProductionMethodTypeRepository productionMethodTypeRepository     = null,
                                 ILineOfBusinessRepository lineOfBusinessRepository                 = null,
                                 IDeliverableGroupTargetPlatformRepository targetPlatformRepository = null,
                                 ITrackActivityElementRepository trackActivityElementRepository     = null,
                                 IDeliverableGroupRepository deliverableGroupRepository             = null,
                                 IApprovalTypeRepository approvalTypeRepository                     = null,
                                 IApprovalService approvalService                   = null,
                                 IDepartmentRepository departmentRepository         = null,
                                 IDeliverableScriptService deliverableScriptService = null,
                                 IDeliverable_BusinessAreaRepository deliverable_BusinessAreaRepository = null,
                                 IChannelRepository channelRepository = null,
                                 IVendorRepository vendorRepository   = null,
                                 IContractRequest_DeliverableRepository ContractRequestDeliverableRepository = null,
                                 IUserRepository userRepository = null
                                 )
     : base(masterVendorViewRepository, graphicsHeaderRepository, propertyService, commentRepository, deliverableDateRepository, deliverableRepository, icommentService, commentTypeService, talentRepository, deliverableUserTitleMrmUserRepository, deliverableSecondaryTargetRepository, talentDeliverableRepository, deliverableStatusRepository, channelTalentRepository,
            deliverableTalentRepository, calendarRepository, iunitOfWork, deliverable_VendorRepository, itrackService, activityTypeActivityStatusRepository, typeOfWorkRepository, typeOfWorkCategoryRepository, scriptRepository, channelDeliverableGroupUserTitleRepository,
            approvalTypeChannelBudgetTypeMRMUserUserTitleRepository, deliverableDeliverableGroupDeliverableDateTypeRepository, offAirDesignRepository, deliverableDateTypeRepository, deliverableInternationalDetailRepository, deliverableInternationalPathRepository, campaignRepository, userTitleRepository, deliverableGroupDeliverableDateTypeRepository, offAirDesignProductionMethodTypeRepository, productionMethodCategoryRepository, assetGroupChannelHouseAdvertiserRepository, paidMediaRepository, graphicHeaderRepository,
            graphicElementRepository, graphicImageRepository, graphicElementTypeGraphicPackageChannelRepository, budgetService, paidMediaInvoiceRepository, paidMediaDetailRepository, musicRepository, musicSubLibraryRepository, scriptService, deliverableBudgetRepository, trackSearchRepository, activityStatusRepository, wBSFiscalYear_ChannelRepository, mopDeliverableRepositry, lobRepositry,
            productionMethodTypeRepository, lineOfBusinessRepository, targetPlatformRepository, trackActivityElementRepository,
            deliverableGroupRepository, approvalTypeRepository, approvalService, departmentRepository,
            deliverableScriptService, deliverable_BusinessAreaRepository, channelRepository, vendorRepository, ContractRequestDeliverableRepository, userRepository)
 {
 }
示例#19
0
 public OrderingService(IRepository repository, IPriceCalculator calculator, IApprovalService orderApproval)
 {
     this.repository    = repository;
     this.calculator    = calculator;
     this.orderApproval = orderApproval;
 }
示例#20
0
 public NotificationService()
 {
     _context         = new TalentContext();
     _approvalService = new ApprovalService(_context);
 }
 public ApprovalsApiController(IApprovalService approvalService)
 {
     _approvalService = approvalService;
 }
示例#22
0
 public ApprovalController(IApprovalService serviceApproval)
 {
     _serviceApproval = serviceApproval;
 }
示例#23
0
 public HomeController(IApprovalService approvalService, IAdminService adminService)
 {
     this.approvalService = approvalService;
     this.adminService    = adminService;
 }
示例#24
0
 public ApprovalActivities(IApprovalService approvalService)
 {
     _approvalService = approvalService;
 }
示例#25
0
 public ApprovalController(IApprovalService approvalService, IDocumentService documentService, ILogger logger)
     : base(logger)
 {
     _approvalService = approvalService;
     _documentService = documentService;
 }
 public ApprovalAppService(IApprovalService serviceBase) : base(serviceBase)
 {
 }
 public SendAuditorApproval(IApprovalService approvalService)
 {
     _approvalService = approvalService;
 }
 //public ApprovalsController(UserDataContext context)
 //{
 //    _context = context;
 //}
 public ApprovalsController(IApprovalService approvalService) => _approvalService = approvalService;
 public CreateVAActivities(IApprovalService approvalService)
 {
     _approvalService = approvalService;
 }
 public ApprovalController(IApprovalService approvalService, IMapper mapper)
 {
     this.approvalService = approvalService;
     this.mapper          = mapper;
 }
示例#31
0
 public void SetUp()
 {
     _approvalEngine  = new Mock <IApprovalEngine>();
     _approvalService = new ApprovalService(_approvalEngine.Object);
 }