Ejemplo n.º 1
0
 public SeatDTO AddReservation(int theaterId, int playId, int stageId, int projectionId, [FromBody] Seat seat)
 {
     return(_seatService.AddReservation(theaterId, playId, stageId, projectionId, User.Identity.GetUserId(), seat));
 }