using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 接口层T_Service_EMR_CT /// public interface IT_Service_Apoplexy_NCXZYJC { #region 成员方法 /// /// 增加一条数据 /// bool Add(T_Service_Apoplexy_NCXZYJC model); /// /// 更新一条数据 /// int Update(T_Service_Apoplexy_NCXZYJC model); /// /// 删除数据 /// bool Delete(int ID); /// /// 获取单个数据 /// T_Service_Apoplexy_NCXZYJC Get(long id); /// /// 根据分页获得数据列表 /// TableModel GetPageList(int pageIndex, int pageSize); #endregion 成员方法 /// /// 根据患者编号(GUID)+所属报表类型 获取数据信息 /// /// 病人编号(GUID) /// /// TableModel GetByPatientGuidAndReportType(string patientGuid); T_Service_Apoplexy_NCXZYJC Getbypatientguid(string patientGuid); } }