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
747 B

  1. using Learun.Application.TwoDevelopment.PersonnelManagement;
  2. namespace Learun.Application.WorkFlow
  3. {
  4. public class MeetingManagementApplyMethod : IWorkFlowMethod
  5. {
  6. MeetingManagementIBLL meetingManagementIBLL = new MeetingManagementBLL();
  7. public void Execute(WfMethodParameter parameter)
  8. {
  9. if (parameter.code == "agree")
  10. {
  11. meetingManagementIBLL.ChangeStatusByProcessId(parameter.processId, "1", parameter.userId);
  12. meetingManagementIBLL.ReceivedList(parameter.processId);
  13. }
  14. else
  15. {
  16. meetingManagementIBLL.ChangeStatusByProcessId(parameter.processId, "2", parameter.userId);
  17. }
  18. }
  19. }
  20. }