Example #1
0
 public IActionResult GetShowsByEvent(string id)
 {
     try
     {
         return(Ok(_eventService.GetShowsByEvent(new Guid(id))));
     }
     catch (ServiceException)
     {
         //TODO: Exception-Logging/Tracing
         return(BadRequest());
     }
 }