public ActionResult <IEnumerable <SeatDto> > GetSeats() { return(_service.GetSeats() .Select(seat => (SeatDto)seat) .ToList()); }