public SqlServerSender(ISqlServerConnection connection, ISqlServerCommand command)
        {
            _connection = connection;
            _connection.Open();

            _command = command;
        }
示例#2
0
 public SqlServerReceiver(ISqlServerConnection connection, ISqlServerCommand command)
 {
     _connection = connection;
     _command    = command;
 }