StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_NCXSS.cs

49 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
/// <summary>
/// 脑出血手术操作表NCXSS
/// </summary>
public interface IT_Service_Apoplexy_NCXSS
{
#region 成员方法
/// <summary>
/// 增加一条数据
/// </summary>
T_Service_Apoplexy_NCXSS Add(T_Service_Apoplexy_NCXSS model);
/// <summary>
/// 更新一条数据
/// </summary>
bool Update(T_Service_Apoplexy_NCXSS model);
/// <summary>
/// 删除数据
/// </summary>
bool Delete(long ID);
/// <summary>
/// 获取单个数据
/// </summary>
T_Service_Apoplexy_NCXSS Get(long id);
T_Service_Apoplexy_NCXSS GetByPatientGuid1(string patientGuid);
/// <summary>
/// 根据分页获得数据列表
/// </summary>
TableModel<T_Service_Apoplexy_NCXSS> GetPageList(int pageIndex, int pageSize);
#endregion 成员方法
/// <summary>
/// 根据患者编号(GUID)获取数据信息
/// </summary>
/// <param name="patientGuid"></param>
/// <returns></returns>
TableModel<T_Service_Apoplexy_NCXSS> GetByPatientGuid(string patientGuid);
}
}