using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IDrugManagementService { /// /// 新增药品 /// /// /// bool InserDrug(DrugManagementModel model); /// /// 修改药品 /// /// /// /// bool UpdateDrug(T_Service_FirstAid_DrugManagement model, T_Service_FirstAid_DrugStockRecord record); /// /// 继续添加药品 /// /// /// bool ContinueAddDrug(T_Service_FirstAid_DrugManagement model); /// /// 药品出库 /// /// /// /// bool ExwarehouseDrug(T_Service_FirstAid_DrugManagement model, long operatorUserID); /// /// 药品审核 /// /// /// bool ExamineGrug(AuditModel model); } }