using HL_FristAidPlatform_DataBase; using HL_FristAidPlatform_Help; using HL_FristAidPlatform_IDataBase; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_Bussiness.Service { public class T_Service_FirstAid_SpecialityCheckUpBLL { private IT_Service_FirstAid_SpecialityCheckUp IService = new T_Service_FirstAid_SpecialityCheckUpDB(); /// /// 新增或更新专科检查 /// /// public MessageModel UpdateOrInsert(SpecialityCheckUpModel model) { if (IService.UpdateOrInsert(model)) { return new MessageModel { Success = true, Msg = "操作成功" }; } else { return new MessageModel { Success = true, Msg = "失败" }; } } /// /// 获取 患者的体格检查新 /// /// /// public T_Service_FirstAid_SpecialityCheckUp GetSpecialityCheckUpInfo(string guid) { return IService.GetSpecialityCheckUpInfo(guid); } } }