Exemplo n.º 1
0
 private BaseStep[] BuildSteps(UniqueActivityId activityId, IEnumerable <StepSchema> stepSchemas)
 {
     return(stepSchemas.Select(x => BuildStep(activityId, x)).ToArray());
 }
Exemplo n.º 2
0
        private BaseStep BuildStep(UniqueActivityId activityId, StepSchema stepSchema)
        {
            var stepId = activityId.MakeStepId(stepSchema.Name);

            return(CreateStepInstance(stepSchema, stepId));
        }
Exemplo n.º 3
0
 protected bool Equals(UniqueActivityId other)
 {
     return(string.Equals(_activityId, other._activityId) && string.Equals(_stageId, other._stageId) && string.Equals(_pipelineId, other._pipelineId) && string.Equals(_schemaName, other._schemaName));
 }