Exemple #1
0
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnStateChanged(InteractionEventArgs pEventArgs)
 {
     StateChanged?.Invoke(this, pEventArgs);
 }
Exemple #2
0
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnTimesliceAdded(InteractionEventArgs pEventArgs)
 {
     TimesliceAdded?.Invoke(this, pEventArgs);
 }
Exemple #3
0
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnModify(InteractionEventArgs pEventArgs)
 {
     Modified?.Invoke(this, pEventArgs);
 }
Exemple #4
0
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnExpenseAdded(InteractionEventArgs pEventArgs)
 {
     ExpenseAdded?.Invoke(this, pEventArgs);
 }
Exemple #5
0
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnComplete(InteractionEventArgs pEventArgs)
 {
     Completed?.Invoke(this, pEventArgs);
 }
Exemple #6
0
 public void OnStateChanged(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }
Exemple #7
0
 public void OnModify(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }