Пример #1
0
 /// <summary>
 /// Raises the job removed event.
 /// </summary>
 /// <param name="e">E.</param>
 public void OnJobRemoved(CM_JobManagerJobEditedEventArgs e)
 {
     if (jobRemoved != null)
     {
         jobRemoved(this, e);
     }
 }
Пример #2
0
 /// <summary>
 /// Raises the job added event.
 /// </summary>
 /// <param name="e">E.</param>
 protected void OnJobAdded(CM_JobManagerJobEditedEventArgs e)
 {
     if (jobAdded != null)
     {
         jobAdded(this, e);
     }
 }