using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 胸痛患者转归 /// public interface IT_Service_Trauma_OutCome { #region 成员方法 /// /// 增加一条数据 /// T_Service_Trauma_OutCome Add(T_Service_Trauma_OutCome model); /// /// 更新一条数据 /// bool Update(T_Service_Trauma_OutCome model); /// /// 删除数据 /// bool Delete(long ID); /// /// 获取单个数据 /// T_Service_Trauma_OutCome Get(long id); /// /// /// /// /// T_Service_Trauma_OutCome GetByGuid(string guid); /// /// 根据分页获得数据列表 /// TableModel GetPageList(int pageIndex, int pageSize); /// /// 根据患者编号(GUID) 获取数据信息 /// /// 病人编号(GUID) /// TableModel GetByPatientGuid(string patientGuid); #endregion 成员方法 /// /// /// /// /// GUIDModel GetGUID(string GUID); } }