20 lines
480 B
C#
20 lines
480 B
C#
using IRaCIS.Core.Application.ViewModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.Service.ReadingCalculate.Interface
|
|
{
|
|
public interface ILuganoCalculateService
|
|
{
|
|
/// <summary>
|
|
/// 计算靶病灶状态
|
|
/// </summary>
|
|
/// <param name="inDto"></param>
|
|
/// <returns></returns>
|
|
Task CalculateTargetLesionStatus(CalculateTargetLesionStatusInDto inDto);
|
|
}
|
|
}
|