コード例 #1
0
 public UseCaseLinkInputExecutionParameter(DataParameter source, UseCaseExecutionContextParameter destination)
 {
     Source      = source ?? throw new ArgumentNullException(nameof(source));
     Destination = destination ?? throw new ArgumentNullException(nameof(destination));
 }
コード例 #2
0
 public UseCaseExecutionContext AddContextParameter(UseCaseExecutionContextParameter parameter)
 {
     ContextItems.Add(parameter);
     return(this);
 }