You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
701 B

  1. using Learun.Application.TwoDevelopment.EducationalAdministration;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Learun.Application.WorkFlow
  8. {
  9. public class ArrangeLessonTermAttemperMethod : INodeMethod
  10. {
  11. ArrangeLessonTermAttemperIBLL arrangeLessonTermAttemperIBLL = new ArrangeLessonTermAttemperBLL();
  12. public void Sucess(string processId)
  13. {
  14. arrangeLessonTermAttemperIBLL.ModifyStatusByProcessId(2, processId);
  15. }
  16. public void Fail(string processId)
  17. {
  18. arrangeLessonTermAttemperIBLL.ModifyStatusByProcessId(0, processId);
  19. }
  20. }
  21. }