コード例 #1
0
 public LoggedOrderNotifierDecorator(IOrderNotifier orderNotifier)
 {
     this.orderNotifier = orderNotifier;
 }
コード例 #2
0
 public OrderNotifierDecorator(IOrderNotifier logger, IOrderNotifier emailNotifierAdapter)
 {
     _logger        = logger;
     _emailNotifier = emailNotifierAdapter;
 }
コード例 #3
0
 public OrderServiceWithDependencyInjection(IOrderNotifier orderNotifier)
 {
     this.orderNotifier = orderNotifier;
 }