Ejemplo n.º 1
0
 public VehicleWashingStartedSignalHandler(
     IMemory memory,
     IWashTunnel washTunnel)
 {
     _memory     = memory;
     _washTunnel = washTunnel;
 }
 public SmartWashTunnel(
     IWashTunnel washTunnel,
     IMotherboard motherboard,
     IDirtinessSensor sensor)
 {
     _washTunnel  = washTunnel;
     _motherboard = motherboard;
     _sensor      = sensor;
 }