public class PrinterBridge
{
//Define the Pattern Interface and Handler Objects.

//Define the IPrinter interface to be used as the "blueprint" for the main Bridge classes.
public interface IPrinter
{
string PrintTestPage();
}

//Each Bridge class (object) will contain a different implementation of the required methods.

public class InkJetPrinter : IPrinter
{
public string PrintTestPage()
{
return ("This text has been printed on a Ink Jet Printer");
}
}

public class LaserPrinter : IPrinter
{
public string PrintTestPage()
{
return ("This text has been printed on a Laser Jet Printer");
}
}

public class DotMatrixPrinter : IPrinter
{
public string PrintTestPage()
{
return ("This text has been printed on a Dot Matrix Printer");
}
}
}