Exemplo n.º 1
0
 private void LetClientIn(int i)
 {
     if (clientsStatus [i] == false)
     {
         ICommand client = new ClientCommand(this, i);
         client.GoIn();
         clientsStatus[i] = true;
     }
 }