|
12345678910111213141516171819202122232425262728 |
- using Learun.Application.TwoDevelopment.AssetManagementSystem;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Learun.Application.TwoDevelopment.LR_LGManager;
-
- namespace Learun.Application.WorkFlow
- {
- public class StampApplyMethod : IWorkFlowMethod
- {
- StampApplyIBLL ass_InventoryIBLL = new StampApplyBLL();
-
-
- public void Execute(WfMethodParameter parameter)
- {
- if (parameter.code == "agree")
- {
- ass_InventoryIBLL.ModifyStatusByProcessId(2, parameter.processId);
- }
- else
- {
- ass_InventoryIBLL.ModifyStatusByProcessId(0, parameter.processId);
- }
- }
- }
- }
|