StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_Transfe...

16 lines
353 B
C#

using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_Apoplexy_Transfer
{
T_Service_Apoplexy_Transfer Add(T_Service_Apoplexy_Transfer model);
int Update(T_Service_Apoplexy_Transfer model);
T_Service_Apoplexy_Transfer GetByPatientGuid(string patientGuid);
}
}