Example #1
0
 public Sensor(IInformationSource infoSource, IRule idsRule)
 {
     informationSource = infoSource;
     rule  = idsRule;
     delay = 1000;
 }
Example #2
0
 private void IntialiseInformationSource(IInformationSource informationSource)
 {
 }
Example #3
0
 public Sensor(IInformationSource infoSource, IRule idsRule, IReportAgent reportAgent) : this(infoSource, idsRule)
 {
     this.reportAgent = reportAgent;
 }