Browse Source

更新版本

master
学 赵 12 months ago
parent
commit
d05b6e3e44
  1. 14
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs

14
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs

@ -1,4 +1,4 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.Data.SqlClient; using System.Data.SqlClient;
@ -77,9 +77,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
private readonly TaskJobService _service; private readonly TaskJobService _service;
private readonly Volo.Abp.ObjectMapping.IObjectMapper _maper; private readonly Volo.Abp.ObjectMapping.IObjectMapper _maper;
protected readonly IExcelImportAppService _excelImportService; protected readonly IExcelImportAppService _excelImportService;
private readonly IConfiguration _config;
public VmiAppService(IConfiguration cfg, public VmiAppService(IConfiguration cfg,
IServiceProvider serviceProvider, IServiceProvider serviceProvider,
IGuidGenerator guidGenerator, IGuidGenerator guidGenerator,
@ -92,13 +89,12 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
ICurrentUser currentUser, ICurrentUser currentUser,
ILogger<VmiAppService> logger, ILogger<VmiAppService> logger,
IExcelImportAppService excelImportService, IExcelImportAppService excelImportService,
TaskJobService service, TaskJobService service
IConfiguration config
) )
{ {
_config = config; _maper = maper;
this._codeRepository = codeRepository; this._codeRepository = codeRepository;
this._cfg = cfg; this._cfg = cfg;
this._guidGenerator = guidGenerator; this._guidGenerator = guidGenerator;
@ -112,10 +108,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
_service = service; _service = service;
LinqToDBForEFTools.Initialize(); LinqToDBForEFTools.Initialize();
_excelImportService = excelImportService; _excelImportService = excelImportService;
string tax = config["Tax"];
} }
/// <summary> /// <summary>

Loading…
Cancel
Save