Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 6
0
 public void OnStateChanged(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public void OnModify(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }