27 lines
730 B
C#
27 lines
730 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_Trauma_Recovery
|
|
{
|
|
/// <summary>
|
|
/// 保存创伤患者康复治疗信息
|
|
/// </summary>
|
|
/// <param name="recovery"></param>
|
|
/// <returns></returns>
|
|
bool SaveRecovery(T_Service_Trauma_Recovery recovery);
|
|
|
|
/// <summary>
|
|
/// 获取创伤患者康复治疗信息
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
T_Service_Trauma_Recovery GetRecery(string patientGuid);
|
|
}
|
|
}
|