|
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using Learun.Application.TwoDevelopment.PersonnelManagement;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Learun.Application.WorkFlow
- {
- public class TextBookIndentMethod : IWorkFlowMethod
- {
- TextBookIndentIBLL textbookindentManagementIBLL = new TextBookIndentBLL();
-
-
- public void Execute(WfMethodParameter parameter)
- {
- if (parameter.code == "agree")
- {
- textbookindentManagementIBLL.ChangeStatusByProcessId(2, parameter.processId);
- }
- else
- {
- textbookindentManagementIBLL.ChangeStatusByProcessId(0, parameter.processId);
- }
- }
- }
- }
|