Ejemplo n.º 1
0
 public DataCommiter(ICommandBuilder commandBuilder, IDataCommandExecuter dataCommandExecuter)
 {
     this.commandBuilder      = commandBuilder ?? throw new ArgumentNullException($"{nameof(commandBuilder)} should not be null");
     this.dataCommandExecuter = dataCommandExecuter ?? throw new ArgumentNullException($"{nameof(dataCommandExecuter)} should not be null");
 }
 public SQLiteInitializer(IDataCommandExecuter dataCommandExecuter, IConfigurationProvider configurationProvider)
 {
     this.dataCommandExecuter   = dataCommandExecuter ?? throw new ArgumentNullException($"{nameof(dataCommandExecuter)} should not be null");
     this.configurationProvider = configurationProvider ?? throw new ArgumentNullException($"{nameof(configurationProvider)} should not be null");
 }