Beispiel #1
0
 public InitOrderDerived(string passedInPar)
     : base(OrderTracker.TrackString("DERIVED CLASS: \t Execution of call to base in parameter"))
 {
     OrderTracker.TrackString("DERIVED CLASS: \t Execution constructor");
 }
Beispiel #2
0
 public InitOrderBase(string baseParm)
 {
     OrderTracker.TrackString("BASE CLASS: Execution of constructor");
 }