JanMalch / kino

RESTful cinema API built with JEE
http://localhost:8080/kino/
1 stars 0 forks source link

UseCases: Guest #30

Open MarekHohmann opened 5 years ago

MarekHohmann commented 5 years ago
JanMalch commented 5 years ago
public interface PresentationDto {
   // ...
   List<PresentationSeatsDto> getSeats();
}

public interface PresentationSeatsDto {
   long getId(); // identify seat in response via ID
   String getRow();
   int getSeatNumber();
   boolean isTaken();
}