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