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