public bool InsertMessageCommand(string source, string qry)
        {
            IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), qry);

            _messageQueue.Insert(command);
            return(true);
        }
 public bool InsertMessageCommand(string source, GatFixMessage fixMsg)
 {
     IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), fixMsg);
     _messageQueue.Insert(command);
     return true;
 }
 public bool InsertMessageCommand(string source, DataRow message)
 {
     IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), message);
     _messageQueue.Insert(command);
     return true;
 }