public Task <ApiResponse <IEnumerable <SeatReservationDto> > > Get(string eventId)
 {
     return(Respond
            .AsyncWithMany <SeatReservationDto>(async(response, fail) =>
     {
         try
         {
             response.Result = await _reservationsService.GetEventSeatReservationsAsync(eventId);
         }
         catch (Exception e)
         {
             Console.WriteLine(e);
             throw;
         }
     }));
 }