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 FolderService(IDocumentManagementService documentManagementService, IFolderStructureMasterService folderStructureMasterService, IFolderStructureFolderService folderStructureFolderService) { _documentManagementService = documentManagementService; _folderStructureMasterService = folderStructureMasterService; _folderStructureFolderService = folderStructureFolderService; }