|
- 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 PurchaseEduMethod : IWorkFlowMethod
- {
- Purchase_EduIBLL purchase_EduIBLL = new Purchase_EduBLL();
-
- public void Execute(WfMethodParameter parameter)
- {
-
- if (parameter.code == "agree")
- {
- purchase_EduIBLL.ModifyStatusByProcessId(2, parameter.processId);
- }
- else
- {
- purchase_EduIBLL.ModifyStatusByProcessId(0, parameter.processId);
- }
- }
-
- }
- }
|