18 lines
478 B
C#
18 lines
478 B
C#
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface ITrauma_PatientTranService
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 修改创伤患者院前信息
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <param name="health"></param>
|
|
/// <returns></returns>
|
|
bool UpdateTraumaPatientFirstAidInfo(T_Service_FirstAid_PatientInfo info, T_Service_FirstAid_HealthCheckup health);
|
|
}
|
|
}
|