|
1234567891011121314151617181920212223242526272829 |
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using Learun.Application.TwoDevelopment.LogisticsManagement;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Learun.Application.WorkFlow
- {
- public class PurchaseLogisticMethod : IWorkFlowMethod
- {
- Purchase_LogisticIBLL purchase_LogisticIBLL = new Purchase_LogisticBLL();
-
- public void Execute(WfMethodParameter parameter)
- {
-
- if (parameter.code == "agree")
- {
- purchase_LogisticIBLL.ModifyStatusByProcessId(2, parameter.processId);
- }
- else
- {
- purchase_LogisticIBLL.ModifyStatusByProcessId(0, parameter.processId);
- }
- }
-
- }
- }
|