public class PrinterPortal
{
//Define the Portal Object.

private PrinterBridge.IPrinter _printer;

//The dependent Bridge class is "injected" into the class constructor.
public PrinterPortal(PrinterBridge.IPrinter bridge)
{
_printer = bridge;
}

public string PrintOperation()
{
return _printer.PrintTestPage();
}
}