コード例 #1
0
 public ImportDataController(IHostingEnvironment hostingEnvironment,
                             NxsDbContext context,
                             IXlsService xlsService,
                             IXlsImportVariableDataService xlsImportVariableDataService,
                             IExcelImportDataService excelImportDataService)
 {
     _context    = context;
     _xlsService = xlsService;
     _xlsImportVariableDataService = xlsImportVariableDataService;
     _excelImportDataService       = excelImportDataService;
     _hostingEnvironment           = hostingEnvironment;
 }
コード例 #2
0
 public AggregationDataHandler(IExcelImportDataService excelImportDataService) :
     base(excelImportDataService)
 {
 }
コード例 #3
0
ファイル: VariableDataHandler.cs プロジェクト: Arysmyatov/NXS
 public VariableDataHandler(IExcelImportDataService excelImportDataService)
 {
     _excelImportDataService = excelImportDataService;
 }
コード例 #4
0
 public AggregationDataHandlerGdp(IExcelImportDataService excelImportDataService)
 {
     _excelImportDataService = excelImportDataService;
 }
コード例 #5
0
 public AggregationDataHandlerAbstract(IExcelImportDataService excelImportDataService)
 {
     _excelImportDataService = excelImportDataService;
 }