public MyRefinedAbstraction(IBridgeImplementor impl) : base(impl)
 {
     System.Diagnostics.Debug.WriteLine("Using MyRefinedAbstraction");
 }
Exemple #2
0
 public BridgeAbstractionBase(IBridgeImplementor implementor)
 {
     _implementor = implementor;
 }
 public MyRefinedAbstraction(IBridgeImplementor impl)
     : base(impl)
 {
     System.Diagnostics.Debug.WriteLine("Using MyRefinedAbstraction");
 }