|
1234567891011121314151617181920212223242526 |
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Learun.Application.WorkFlow
- {
- public class StuCancelDisciplineManageMethod : IWorkFlowMethod
- {
- StuCancelDisciplineManagementIBLL stuCancelDisciplineManagementIBLL = new StuCancelDisciplineManagementBLL();
-
- public void Execute(WfMethodParameter parameter)
- {
- if (parameter.code == "agree")
- {
- stuCancelDisciplineManagementIBLL.ChangeStatusByProcessId("2", parameter.processId, parameter.userId);
- }
- else
- {
- stuCancelDisciplineManagementIBLL.ChangeStatusByProcessId("3", parameter.processId, parameter.userId);
- }
- }
- }
- }
|