コード例 #1
0
ファイル: ShowController.cs プロジェクト: schrutek/pos4xhif
 public IActionResult GetShowsByEvent(string id)
 {
     try
     {
         return(Ok(_eventService.GetShowsByEvent(new Guid(id))));
     }
     catch (ServiceException)
     {
         //TODO: Exception-Logging/Tracing
         return(BadRequest());
     }
 }