using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
using HL_FristAidPlatform_Models.Sercice;
using System.Collections.Generic;
namespace HL_FristAidPlatform_IDataBase.Service
{
public interface IT_Service_Apoplexy_OprationInfo
{
#region 成员方法
///
/// 增加一条数据
///
T_Service_Apoplexy_OprationInfo Add(T_Service_Apoplexy_OprationInfo model);
///
/// 更新一条数据
///
int Update(T_Service_Apoplexy_OprationInfo model);
///
/// 新增或者修改
///
///
///
///
bool UpdateOrInsertHospitalization(T_Service_Apoplexy_NCXSS ncxss, T_Service_Apoplexy_DMLSS dmlss, T_Service_Apoplexy_CEACZ CEA, T_Service_Apoplexy_XGZL xgzl, string temp, List nihsslist,string ArrivalCatheterRoomTime,string StartCatheterRoomTime);
///
/// 删除数据
///
bool Delete(long ID);
///
/// 获取单个数据
///
T_Service_Apoplexy_OprationInfo Get(long id);
T_Service_Apoplexy_OprationInfo GetByPatientGuid1(string PatientGuid);
///
/// 根据分页获得数据列表
///
TableModel GetPageList(int pageIndex, int pageSize);
///
/// 根据患者编号(GUID)获取数据信息
///
///
///
TableModel GetByPatientGuid(string patientGuid);
#endregion 成员方法
}
}