Zum Hauptinhalt springen

Erste Instanz

Zum verwalten der Druckprofile benötigt man eine Instanz der Klasse PrintingPool.

public Pool = new PrintingPool(); 

Die Zugriffsebene muss nicht zwingend public sein. Alle Druckverwaltungsprozesse sollten jedoch über die eine Instanz Pool laufen

Beispiel mit indirektem Zugriff über eine statische Klasse

public static class PrintingManager
{
private static readonly PrintingPool _pool = new PrintingPool();

public static PrintingPool GetPool()
{
return _pool;
}

// ... Alle weiteren Methoden, die mit _pool arbeiten
}