public ContractResourceFileController(
     IContractsService contractsService,
     IDocumentManagementService documentManagementService,
     IFolderStructureMasterService folderStructureMasterService,
     IFolderStructureFolderService folderStructureFolderService,
     IContractModificationService contractModificationService,
     IFileService fileService,
     IConfiguration configuration,
     IContractsService contractRefactorService,
     IUserService userService,
     IContractResourceFileService contractResourceFileService,
     IMapper mapper)
 {
     _contractsService             = contractsService;
     _documentManagementService    = documentManagementService;
     _folderStructureMasterService = folderStructureMasterService;
     _folderStructureFolderService = folderStructureFolderService;
     _contractModificationService  = contractModificationService;
     _fileService             = fileService;
     _configuration           = configuration;
     _contractRefactorService = contractRefactorService;
     _mapper      = mapper;
     _userService = userService;
     documentRoot = configuration.GetSection("Document").GetValue <string>("DocumentRoot");
     _logger      = LogManager.GetCurrentClassLogger();
     _contractResourceFileService = contractResourceFileService;
 }
 public AttachmentImportService(IImportFileService importFileService, IContractsService contractsService, IConfiguration configuration,
                                IDocumentManagementService documentManagementService, IContractResourceFileService contractResourceFileService, IContractModificationService contractModificationService)
 {
     _importFileService           = importFileService;
     _contractsService            = contractsService;
     _configuration               = configuration;
     _contractResourceFileService = contractResourceFileService;
     _documentManagementService   = documentManagementService;
     _contractModificationService = contractModificationService;
     rootPath = _configuration.GetSection("Document:DocumentRoot").Value;
 }
Beispiel #3
0
 public EmployeeBillingRatesController(
     IFileService fileService,
     IConfiguration configuration,
     IEmployeeBillingRatesService employeeBillingRatesService,
     IContractsService contractRefactorService,
     IContractResourceFileService contractResourceFileService,
     IUserService userService,
     IMapper mapper
     )
 {
     _fileService   = fileService;
     _configuration = configuration;
     _employeeBillingRatesService = employeeBillingRatesService;
     _contractRefactorService     = contractRefactorService;
     _contractResourceFileService = contractResourceFileService;
     _mapper      = mapper;
     _userService = userService;
     documentRoot = configuration.GetSection("Document").GetValue <string>("DocumentRoot");
     _logger      = LogManager.GetCurrentClassLogger();
 }
Beispiel #4
0
 public WorkBreakDownStructureController(
     IFileService fileService,
     IConfiguration configuration,
     IContractWBSService contractWBSService,
     IContractsService contractRefactorService,
     IUserService userService,
     IContractResourceFileService contractResourceFileService,
     IMapper mapper
     )
 {
     _fileService             = fileService;
     _configuration           = configuration;
     _contractRefactorService = contractRefactorService;
     _contractWBSService      = contractWBSService;
     _mapper = mapper;
     _contractResourceFileService = contractResourceFileService;
     documentRoot = configuration.GetSection("Document").GetValue <string>("DocumentRoot");
     _userService = userService;
     _logger      = LogManager.GetCurrentClassLogger();
 }
 public ContractModificationController(
     IContractModificationService contractModificationService,
     IUrlHelper urlHelper,
     INotificationTemplatesService notificationTemplatesService,
     INotificationBatchService notificationBatchService,
     INotificationMessageService notificationMessageService,
     IContractsService contractsService,
     IContractsService contractRefactorService,
     ICommonService commonService,
     IResourceAttributeService resourceAttributeService,
     IResourceAttributeValueService resourceAttributeValueService,
     IConfiguration configuration,
     IUserService userService,
     IRevenueRecognitionService revenueRecognitionService,
     IMapper mapper,
     IContractResourceFileService contractResourceFileService,
     IGenericNotificationService genericNotificationService,
     IFileService fileService)
 {
     _contractModificationService  = contractModificationService;
     _notificationTemplatesService = notificationTemplatesService;
     _notificationBatchService     = notificationBatchService;
     _notificationMessageService   = notificationMessageService;
     _urlHelper = urlHelper;
     _resourceAttributeService = resourceAttributeService;
     _contractsService         = contractsService;
     _configuration            = configuration;
     _commonService            = commonService;
     _userService = userService;
     _resourceAttributeValueService = resourceAttributeValueService;
     _revenueRecognitionService     = revenueRecognitionService;
     _contractRefactorService       = contractRefactorService;
     _fileService   = fileService;
     _userService   = userService;
     _mapper        = mapper;
     _eventLogger   = NLogConfig.EventLogger.GetCurrentClassLogger();
     _configuration = configuration;
     _logger        = LogManager.GetCurrentClassLogger();
     _genericNotificationService  = genericNotificationService;
     _contractResourceFileService = contractResourceFileService;
 }