public async Task TrackEventAsync([FromBody] TrackEventRequest ev)
 => await _trackingService.TrackEventAsync(HttpContext.GetCurrentSessionId(), ev.Type, ev.Source, ev.Data);
Beispiel #2
0
 public async Task <dynamic> TrackEventAsync(TrackEventRequest model)
 {
     return(await _apiClientHandler.Get <dynamic, TrackEventRequest>(model));
 }
 public async Task <dynamic> TrackEventAsync(TrackEventRequest model)
 {
     return(await _apiClientHandler.Get <dynamic>(CreateQueryWithApiKeyAndModelParams(model)));
 }