예제 #1
0
 public ExceptionDecorator(MyDBase dbase)
     : base(dbase)
 {
 }
예제 #2
0
 public LoggingDecorator(string file, MyDBase dbase) : base(dbase)
 {
     writer = new StreamWriter(file, true);
 }
예제 #3
0
 public Decorator(MyDBase myDBase)
 {
     database = myDBase;
 }