예제 #1
0
 /// <summary>
 /// Clones this StepWorkflowTrigger object to a new StepWorkflowTrigger object
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="deepCopy">if set to <c>true</c> a deep copy is made. If false, only the basic entity properties are copied.</param>
 /// <returns></returns>
 public static StepWorkflowTrigger Clone(this StepWorkflowTrigger source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as StepWorkflowTrigger);
     }
     else
     {
         var target = new StepWorkflowTrigger();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
예제 #2
0
 /// <summary>
 /// Copies the properties from another StepWorkflowTrigger object to this StepWorkflowTrigger object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this StepWorkflowTrigger target, StepWorkflowTrigger source)
 {
     target.Id                      = source.Id;
     target.ForeignGuid             = source.ForeignGuid;
     target.ForeignKey              = source.ForeignKey;
     target.IsActive                = source.IsActive;
     target.StepProgramId           = source.StepProgramId;
     target.StepTypeId              = source.StepTypeId;
     target.TriggerType             = source.TriggerType;
     target.TypeQualifier           = source.TypeQualifier;
     target.WorkflowName            = source.WorkflowName;
     target.WorkflowTypeId          = source.WorkflowTypeId;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }