Ejemplo n.º 1
0
 /// <summary>
 /// Notifies a method was executed with errors
 /// </summary>
 /// <param name="e">The event args</param>
 internal void OnError(DAOEventArgs e)
 {
     if (Error != null)
     {
         Error(this, e);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Notifies a method was executed successfully
 /// </summary>
 /// <param name="e">The event args</param>
 internal void OnDone(DAOEventArgs e)
 {
     if (Done != null)
     {
         Done(this, e);
     }
 }