public class Tisch 
{ protected int SitzPlätze;

   //Konstruktor 
  public Tisch(int SitzPlätze)
    {
      this.SitzPlätze = SitzPlätze;
    }
}
