示例#1
0
 public DataImporter(IEntityFinder entityFinder
                     , IAttributeFinder attributeFinder
                     , IOptionSetDetailFinder optionSetDetailFinder
                     , IStringMapFinder stringMapFinder
                     , IWebHelper webHelper
                     , IDataCreater dataCreater
                     , IDataUpdater dataUpdater
                     , IDataFinder dataFinder
                     , IAggregateService aggregateService
                     , IImportFileService importFileService
                     , IImportDataService importDataService
                     , IImportMapService importMapService)
 {
     _entityFinder    = entityFinder;
     _attributeFinder = attributeFinder;
     _optionSetDetailServiceFinder = optionSetDetailFinder;
     _stringMapFinder   = stringMapFinder;
     _webHelper         = webHelper;
     _dataCreater       = dataCreater;
     _dataUpdater       = dataUpdater;
     _dataFinder        = dataFinder;
     _aggregateService  = aggregateService;
     _importFileService = importFileService;
     _importDataService = importDataService;
     _importMapService  = importMapService;
 }
示例#2
0
 public DataImporterController(IWebAppContext appContext
                               , IDataImporter dataImporter
                               , IDataExporter dataExporter
                               , IImportDataService importDataService
                               , IImportFileService importFileService
                               , IImportMapService importMapService)
     : base(appContext)
 {
     _dataImporter      = dataImporter;
     _dataExporter      = dataExporter;
     _importDataService = importDataService;
     _importFileService = importFileService;
     _importMapService  = importMapService;
 }
示例#3
0
 public DataImportController(IWebAppContext appContext
     , IEntityFinder entityFinder
     , IAttributeFinder attributeFinder
     , IDataImporter dataImporter
     , IImportMapService importMapService
     , IImportFileService importFileService
     , IFileTemplateProvider fileTemplateProvider
     , IWebHelper webHelper
     , ISessionService sessionService
     , ISettingFinder settingFinder
     )
     : base(appContext)
 {
     _entityFinder = entityFinder;
     _attributeFinder = attributeFinder;
     _dataImporter = dataImporter;
     _importMapService = importMapService;
     _importFileService = importFileService;
     _fileTemplateProvider = fileTemplateProvider;
     _webHelper = webHelper;
     _sessionService = sessionService;
     _settingFinder = settingFinder;
 }