Пример #1
0
 protected void OnInvalid(StationComputerEventArgs e)
 {
     if (this.Invalid != null)
     {
         this.Invalid(this, e);
     }
 }
Пример #2
0
 protected void OnMaintenance(StationComputerEventArgs e)
 {
     if (this.Maintenance != null)
     {
         this.Maintenance(this, e);
     }
 }
Пример #3
0
 protected void OnInService(StationComputerEventArgs e)
 {
     if (this.InService != null)
     {
         this.InService(this, e);
     }
 }
Пример #4
0
 protected void OnOnline(StationComputerEventArgs e)
 {
     if (this.Online != null)
     {
         this.Online(this, e);
     }
 }
Пример #5
0
 protected void OnTerminalStateChange(StationComputerEventArgs e)
 {
     if (this.TerminalStateChange != null)
     {
         this.TerminalStateChange(this, e);
     }
 }