public KinoTeatr(string name, ZalType type, int price, int count)
 {
     ID++;
     uniqueId   = ID;
     CinemaName = name;
     Type       = type;
     Price      = price;
     places     = new Place[0, 0];
     countPlace = count;
 }
        static void Main(string[] args)
        {
            ZalType big    = new ZalType("big");
            ZalType small  = new ZalType("small");
            ZalType middle = new ZalType("middle");

            KinoTeatr seans = new KinoTeatr("ParkCinema", big, 7, 3);

            Place place = new Place(2, 2);

            seans.AddPlace(place);
        }