public async Task <IActionResult> GetExtendedLog(string id)
 {
     return(await _extendedLogHelper.Get(id));
 }
示例#2
0
 public async Task <IActionResult> GetEventService(string id, string includePropertyPaths = "")
 {
     return(await _serviceHelper.Get(id, includePropertyPaths));
 }
示例#3
0
 public async Task <IActionResult> GetNotification(string id)
 {
     return(await _notificationHelper.Get(id));
 }
示例#4
0
 public async Task <IActionResult> GetEventLocation(string id, string includePropertyPaths = "")
 {
     return(await _locationHelper.Get(id, includePropertyPaths));
 }