public IteratingCommandConfig(StaticCommandConfig staticCommandConfig, IEnumerable <T> collection) { Static = staticCommandConfig ?? throw new ArgumentNullException(nameof(staticCommandConfig)); Collection = collection ?? throw new ArgumentNullException(nameof(collection)); }
internal CommandEngine(StaticCommandConfig commandConfig) { this.commandConfig = commandConfig ?? throw new ArgumentNullException(nameof(commandConfig)); configurations = new List <Action <DbCommand> >(); }