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
{
///
/// 保存创伤患者康复治疗信息
///
///
///
bool SaveRecovery(T_Service_Trauma_Recovery recovery);
///
/// 获取创伤患者康复治疗信息
///
///
///
T_Service_Trauma_Recovery GetRecery(string patientGuid);
}
}