/// <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); }
/// <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); }
/// <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); }
/// <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); }
/// <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); }
public void OnStateChanged(InteractionEventArgs pEventArgs) { throw new NotImplementedException(); }
public void OnModify(InteractionEventArgs pEventArgs) { throw new NotImplementedException(); }