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;
 }
 public ExportController(IResourceAttributeService resourceAttribute)
 {
     _resourceAttribute = resourceAttribute;
 }