public int GetAmountOfRows() { return(Seats.GroupBy(t => t.Row).Count()); }
public int GetAmountOfChairs() { return(Seats.GroupBy(t => t.Chair).Count()); }