/// <summary>
 /// Default ctor
 /// </summary>
 internal SensorSetImpl(SensorRefSet impl, RouteSensorSetType type, IRoute route)
     : base(impl)
 {
     this.type  = type;
     this.route = route;
 }
 /// <summary>
 /// Default ctor
 /// </summary>
 internal SensorRefSet(ModuleEntity owner, RouteSensorSetType type, IRoute route)
     : base(owner)
 {
     this.type  = type;
     this.route = route;
 }