示例#1
0
 internal CommandContextBinding(string parameterName, CommandContextDescriptor descriptor, ServerlessCqrsOptions options)
 {
     this.parameterName = parameterName;
     this.descriptor    = descriptor;
     this.options       = options;
 }
 internal CommandContextValueProvider(CommandContextDescriptor descriptor, ServerlessCqrsOptions options)
 {
     this.descriptor = descriptor;
     this.options    = options;
 }
 public CommandContextBindingProvider(INameResolver nameResolver, IOptions <ServerlessCqrsOptions> options)
 {
     this.nameResolver = nameResolver;
     this.options      = options?.Value;
 }