public async Task <SystemEventV1> LogEvent(string correlationId, SystemEventV1 _event)
 {
     using (var timing = Instrument(correlationId))
     {
         return(await CallCommandAsync <SystemEventV1>(
                    "log_event",
                    correlationId,
                    new
         {
             eventlog = _event
         }
                    ));
     }
 }
Exemple #2
0
 public async Task <SystemEventV1> LogEvent(string correlationId, SystemEventV1 _event)
 {
     return(await Task.FromResult(new SystemEventV1()));
 }