示例#1
0
 public void FindSpawnIdInSteps(DTO.Program program, string p, DTO.Actions a)
 {
     try
     {
         if (a.Steps != null)
         {
             foreach (Step s in a.Steps)
             {
                 if (s.Id.Equals(p))
                 {
                     SetInitialProperties(program.AssignToId, s, false);
                     OnProcessIdEvent(s);
                 }
             }
         }
     }
     catch (Exception ex)
     {
         throw new Exception("AD:PlanElementUtil:FindIdInSteps()::" + ex.Message, ex.InnerException);
     }
 }
 public void SaveResponses(DTO.Actions action, DTO.IProcessActionRequest request, bool repeat)
 {
     throw new NotImplementedException();
 }