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