public void Execution()
        {
            var tableRecord = new TableRecord();
            tableRecord.ActionId = _actionId;
            tableRecord.ActionName = _actionName;
            tableRecord.TempUid = _tempUid;
            tableRecord.TableId = _tableId;
            tableRecord.ResultStr = _resultStr;
            tableRecord.ErrorMessage = _errorMessage;
            tableRecord.ExOrderId = _exOrderId;

            DomainEvent.Publish(new TableRecordEvent(tableRecord));
        }
Example #2
0
 public ActionResult TableRecord(TableRecord tableRecord)
 {
     return Content("");
 }