StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_ApoplexyProposal.cs

27 lines
728 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_ApoplexyProposal
{
/// <summary>
/// 保存指导治疗及建议
/// </summary>
/// <param name="proposal"></param>
/// <returns></returns>
bool SaveScreenProposal(T_Service_ApoplexyProposal proposal);
/// <summary>
/// 获取指导治疗及建议
/// </summary>
/// <param name="patientGuid"></param>
/// <returns></returns>
T_Service_ApoplexyProposal GetScreenProposal(string patientGuid);
}
}