StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_ApoplexyScreenPh...

27 lines
790 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_ApoplexyScreenPhysicalFitness
{
/// <summary>
/// 保存体格检查
/// </summary>
/// <param name="physicalFitness"></param>
/// <returns></returns>
bool SaveScreenPhysicalFitness(T_Service_ApoplexyScreenPhysicalFitness physicalFitness);
/// <summary>
/// 获取体格检查
/// </summary>
/// <param name="patientGuid"></param>
/// <returns></returns>
T_Service_ApoplexyScreenPhysicalFitness GetScreenPhysicalFitness(string patientGuid, string flag);
}
}