Exemplo n.º 1
0
 private static void CreateRegularHandler(ClientEventArgs e)
 {
     Console.WriteLine(e.Message);
 }
Exemplo n.º 2
0
 private static void CreateHandler(ClientEventArgs e)
 {
     Console.WriteLine($"{e.Message} Id of account {e.Id}");
 }
Exemplo n.º 3
0
 public void CreateRegularAcc(ClientEventArgs client)
 {
     CallEvent(client, OnRegular);
 }
Exemplo n.º 4
0
 public void CreateCreditAcc(ClientEventArgs client)
 {
     CallEvent(client, OnCredit);
 }
Exemplo n.º 5
0
 public void CreateAccount(ClientEventArgs client)
 {
     CallEvent(client, OnCreated);
 }