namespace w230415_classes { public class CinemaHall : Hall { public CinemaHall() { int iW = 10; int iH = 3; for (int iX = 0; iX < iW; iX++) { for (int iY = 0; iY < iH; iY++) { HallPlaceList.Add(new HallPlace() { SeatPosition = iX, SeatRow = iY }); } } } } }