|
- 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 ArrangeLessonTermAttemperMethod : INodeMethod
- {
- ArrangeLessonTermAttemperIBLL arrangeLessonTermAttemperIBLL = new ArrangeLessonTermAttemperBLL();
- public void Sucess(string processId)
- {
- arrangeLessonTermAttemperIBLL.ModifyStatusByProcessId(2, processId);
- }
-
- public void Fail(string processId)
- {
- arrangeLessonTermAttemperIBLL.ModifyStatusByProcessId(0, processId);
- }
- }
- }
|