示例#1
0
 public CounterSmuggler(CounterSmugglerOptions options, ICounterSmugglerSource source, ICounterSmugglerDestination destination)
 {
     _options       = options;
     _source        = source;
     _destination   = destination;
     _notifications = new CounterSmugglerNotifications();
 }
示例#2
0
 protected CounterSmugglerBase(CounterSmugglerOptions options, CounterSmugglerNotifications notifications, ICounterSmugglerSource source, ICounterSmugglerDestination destination)
 {
     Notifications = notifications;
     Options       = options;
     Source        = source;
     Destination   = destination;
 }
示例#3
0
 public DeltaSmuggler(CounterSmugglerOptions options, CounterSmugglerNotifications notifications, ICounterSmugglerSource source, ICounterSmugglerDestination destination)
     : base(options, notifications, source, destination)
 {
 }