Exemplo n.º 1
0
 protected void OnCompletionEvent()
 {
     CompletionEvent?.Invoke(this, new CompletionEventArgs(new Character(
                                                               characterNameText.Text,
                                                               characterRaceText.Text,
                                                               (int)hpNumeric.Value,
                                                               (int)acNumeric.Value)));
 }
Exemplo n.º 2
0
 public virtual void OnCompletionEvent()
 {
     CompletionEvent?.Invoke(this, new FormCompletionEventArgs(new RequestFormCompletionData(DB, workRequest)));
 }
Exemplo n.º 3
0
 public void Complete()
 {
     CompletionEvent.Invoke(this, Surface);
     Dispose();
 }