Exemplo n.º 1
0
 public string dispenseKeys()
 {
     if (automat.getCount() <= 0)
     {
         automat.setState(automat.getFullyRentedState());
     }
     else
     {
         automat.setState(automat.getWaitingState());
     }
     return("Here are your keys!");
 }