Example #1
0
 public override void MountCamera(ConcretePhoneCamera camera)
 {
     Console.WriteLine(camera + " " + "succesfully mounted to SamsungS10\n");
 }
Example #2
0
 public ProducePhone(ConcretePhoneFactory factory)
 {
     phoneCase   = factory.ProducePhoneCase();
     motherBoard = factory.ProducePhoneMotherBoard();
     camera      = factory.ProucePhoneCamera();
 }
Example #3
0
 abstract public void MountCamera(ConcretePhoneCamera a);