28 lines
748 B
C#
28 lines
748 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_ApoplexyScreenCervical
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 保存颈部血管超声
|
|||
|
/// </summary>
|
|||
|
/// <param name="cervical"></param>
|
|||
|
/// <returns></returns>
|
|||
|
bool SaveScreenCervical(T_Service_ApoplexyScreenCervical cervical);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取颈部血管超声
|
|||
|
/// </summary>
|
|||
|
/// <param name="guid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
T_Service_ApoplexyScreenCervical GetScreenCervical(string patientGuid, string flag);
|
|||
|
}
|
|||
|
}
|