27 lines
701 B
C#
27 lines
701 B
C#
|
using HL_FristAidPlatform_Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_IDataBase
|
|||
|
{
|
|||
|
public interface IT_Service_ApoplexyTCD
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 保存TCD经颅多普勒超声
|
|||
|
/// </summary>
|
|||
|
/// <param name="pastHistory"></param>
|
|||
|
/// <returns></returns>
|
|||
|
bool SaveScreenTCD(T_Service_ApoplexyTCD tcd);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取TCD经颅多普勒超声
|
|||
|
/// </summary>
|
|||
|
/// <param name="guid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
T_Service_ApoplexyTCD GetScreenTCD(string patientGuid);
|
|||
|
}
|
|||
|
}
|