Ejemplo n.º 1
0
 public UseCaseLinkInputExecutionParameter(DataParameter source, UseCaseExecutionContextParameter destination)
 {
     Source      = source ?? throw new ArgumentNullException(nameof(source));
     Destination = destination ?? throw new ArgumentNullException(nameof(destination));
 }
Ejemplo n.º 2
0
 public UseCaseExecutionContext AddContextParameter(UseCaseExecutionContextParameter parameter)
 {
     ContextItems.Add(parameter);
     return(this);
 }