导入代码修改

This commit is contained in:
he
2024-09-24 14:14:49 +08:00
parent 721ab8dfd3
commit b097ca1db3
6 changed files with 75 additions and 5 deletions
@@ -1,5 +1,7 @@
using IRaCIS.Core.Application.Service.Reading.Dto;
using IRaCIS.Core.Domain.Share;
using Microsoft.AspNetCore.Http;
using System.Data;
namespace IRaCIS.Core.Application.Service
{
@@ -36,5 +38,12 @@ namespace IRaCIS.Core.Application.Service
/// <param name="lesionType"></param>
/// <returns></returns>
Task LogRecord(ReadingCalculateDto inDto, string lesionName, LesionType lesionType);
/// <summary>
/// 从上传文件中获取Datatable
/// </summary>
/// <param name="file"></param>
/// <returns></returns>
Task<DataTable> GetDataTableFromUpload(IFormFile file);
}
}
@@ -1,5 +1,7 @@
using IRaCIS.Core.Application.Service.Reading.Dto;
using IRaCIS.Core.Application.ViewModel;
using Microsoft.AspNetCore.Http;
using System.Data;
namespace IRaCIS.Core.Application.Service
{
@@ -54,5 +56,7 @@ namespace IRaCIS.Core.Application.Service
/// <returns></returns>
Task<object> GetReadingCalculationData(GetReadingCalculationDataInDto inDto);
}
}